如何为多个按钮添加点击事件JQuery?
我有一些具有这样 id 的按钮:
id='button0'
id='button1'
id='button2'
id='button3'
id='button4'
...
我想为所有按钮添加单击事件。我怎样才能以最大的性能做到这一点?
I have buttons that has ids like that:
id='button0'
id='button1'
id='button2'
id='button3'
id='button4'
...
I want to add click event for all of them. How can I do it with most performance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
简单
你应该使用类!
simple
you should use class instead !!!
以 (^=) 开头,
例如
$("button[id^='button']")
性能方面 - 不确定 ^= 会产生什么影响。
参考: http://api.jquery.com/attribute-starts-with-selector/
Starts with (^=)
Something like
$("button[id^='button']")
Performance wise - not sure what the impact of ^= would be though.
ref: http://api.jquery.com/attribute-starts-with-selector/