jQuery 侦听器单击不起作用
所以我有这段代码应该监听#button上的点击,但它不起作用,并且让我发疯!
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
$('#button').click(function() {
alert('OK!');
});
</script>
和 HTML:
<input id="button" type="button" value="OK" />
这很奇怪。欢迎任何帮助!
So I have this code that should listen for a click on #button but it won't work, and is driving me crazy!
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
$('#button').click(function() {
alert('OK!');
});
</script>
and the HTML:
<input id="button" type="button" value="OK" />
This is strange. Any help is welcome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 document.ready 函数中编写您的代码
希望您从中得到一些想法
Write your code inside document.ready function
hope you get some idea from this
代码应该如下所示:
这是与此相关的 jquery 文档:
http://docs.jquery.com/How_jQuery_Works
Here's what the code should look like:
Here's the jquery documentation that relates to this:
http://docs.jquery.com/How_jQuery_Works