为什么这个 Jquery 函数不起作用

发布于 2024-10-05 11:56:17 字数 171 浏览 2 评论 0原文

http://jsfiddle.net/bDSW9/

在上面的链接中,当我与“click”一起使用时,它正在工作当我将它与“绑定”一起使用时,它不起作用。可能是什么问题。我怎样才能使它也与绑定一起工作

http://jsfiddle.net/bDSW9/

In the Above link When i use with "click" it is working and when i use it with "bind" it is not working .What might be the problem .How can i make it work with bind too

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

口干舌燥 2024-10-12 11:56:21

您缺少 id 为“imgSaveComment”的元素,并且不需要在 .bind

.bind("click",checkParams);

http://jsfiddle.net/bDSW9/5/

You're missing an element with id "imgSaveComment" and you don't need to use () in the function part of .bind

.bind("click",checkParams);

http://jsfiddle.net/bDSW9/5/

甜点 2024-10-12 11:56:20

jQuery Bind 将函数指针作为第二个参数。您应该使用,

$("#imgSaveComment").bind("click",checkParams);

因为在您的示例中您调用函数 checkParams 并使用返回值
绑定到单击事件。

jQuery bind takes a function pointer as the second parameter. You should use

$("#imgSaveComment").bind("click",checkParams);

because in your example you call the function checkParams and use the return value
to bind to the on click event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文