为什么在小提琴上不显示警报?

时间:2014-03-15 02:19:05

标签: javascript jquery

为什么警报不显示。我检查我的safari和chrome浏览器?我检查得到这个错误。

http://jsfiddle.net/LyXLD/1/

var lastestCountValue=11;
var file_show_counter=lastestCountValue;
$(document).ready(function() {
    $("#pre").click(function(){
        alert("--")
     //  $('#curr').html('ll');
    }); 
});

2 个答案:

答案 0 :(得分:3)

您不能拥有多个具有相同ID的元素....

<label id="pre">naveen</label>
<button id="pre">pre</button>

因此按钮的id“pre”无效。将此标签ID更改为其他内容,您的代码将正常工作。目前,已注册标签的点击事件。

<label id="prelabel">naveen</label>
<button id="pre">pre</button>

答案 1 :(得分:2)

您有2个具有相同ID pre的元素。类名可以重复,但ID必须是唯一的。尝试点击第二个&#34; naveen&#34;它会提醒。