为什么这个 Jquery 函数不起作用
在上面的链接中,当我与“click”一起使用时,它正在工作当我将它与“绑定”一起使用时,它不起作用。可能是什么问题。我怎样才能使它也与绑定一起工作
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您缺少 id 为“imgSaveComment”的元素,并且不需要在 .bind
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
http://jsfiddle.net/bDSW9/5/
jQuery Bind 将函数指针作为第二个参数。您应该使用,
因为在您的示例中您调用函数 checkParams 并使用返回值
绑定到单击事件。
jQuery bind takes a function pointer as the second parameter. You should use
because in your example you call the function checkParams and use the return value
to bind to the on click event.