我在JavaScript(jQuery)中有这段代码:
$("<a />").html("?").attr({
href: "javascript:void();",
class: "CorrentTooltip",
title: "Explain!"
});
逃避保留字class
的替代方法是什么?
ps。:由于与关键字class
冲突,选项class
导致我的IDE(Visual Studio)中的Javascript Parser混乱。所以,JS Parser说在这之后有很多语法错误。我不能崩溃代码块。它继续功能,但很难看。
答案 0 :(得分:10)
您可以使用''
或""
$("<a />").html("?").attr({
href: "javascript:void();",
'class': "CorrentTooltip",
title: "Explain!"
});