私が警告するとき
$(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
}
});