刚用jquery遇到了这个问题,click没有反应。
jquery是这样的
<script type="text/javascript"> $(document).ready(function(){ alert("1"); $("#b01").click(function(){ alert("2"); }); }); </script>
这个是按钮<button id="b01" type="button">Change Content</button>
页面刷新是会弹出 1 这个框,但是点击按钮 2 的框不但出来,没有反应,这时为什么啊!!
光光这部分代码在FF下没有问题,估计是<button id="b01" type="button">Change Content</button>
这部分你后面生成的,$(document).ready时还没加载这部分。
经测试正常
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new document </title> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> </head> <body> <script type="text/javascript"> $(document).ready(function(){ alert("1"); $("#b01").click(function(){ alert("2"); }); }); </script> 这个是按钮<button id="b01" type="button">Change Content</button> </body> </html>
<button id="b01" type="button">Change Content</button>
是直接写在body里面的,这样也没加载到的吗?
如果是没加载的问题,那有什么办法可以解决啊?
直接写在html里的话,你查一下是不是拼写错误什么的,独立的测试如2#,是可以运行的。
没有问题,FF,ie和谷歌都试过。你确定你按的是Change Content而不是《发送》?
有
那就可能是你include的部分也有个元素id叫b01,没记错的话ID选择器的话只会返回第一个元素。
貌似是有什么冲突了?$换成jQuery就行了,谢谢大家了
Atas ialah kandungan terperinci jquery为什么指定ID的click事件不能触发?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!