-1

如果我说...

alert(this.id);

我收到一条显示“信息”的警报。我该怎么办...

if(this.id == "info") alert("Info");

还,

if(this.is("#info")) alert ("Info");

不工作。

4

2 回答 2

0

Try if(this.getAttribute('id') == "info") alert("Info"); Or maybe this is not an object then there is additional code from your side needed to tell what's wrong.

于 2012-09-25T18:50:05.923 回答
-1

使用 attr("id")。

检查这个http://jsfiddle.net/PJDkk/1/

于 2012-09-25T18:53:20.260 回答