当我提醒
$(this).attr("clicked") == "aa"
它发出警报true
。但此代码不会提醒 aa。
if ($(this).attr("clicked") == "aa"){
alert("aa");
}
任何人都可以帮助解决这个问题吗?谢谢
编辑
这个内容是
<a id='Comedy' hoverb='green' clicked='aa'>want to laugh</a>
整段代码:
$('.left a').live("click", function() {
if ($(this).attr("clicked") == "aa"){
$(this).css('background',black);
alert("aa");
}
else {
//do somethingelse
}
});