为什么警报不显示。我检查我的safari和chrome浏览器?我检查得到这个错误。
var lastestCountValue=11;
var file_show_counter=lastestCountValue;
$(document).ready(function() {
$("#pre").click(function(){
alert("--")
// $('#curr').html('ll');
});
});
答案 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;它会提醒。