如何为多个按钮添加点击事件JQuery?

发布于 2024-12-05 20:47:43 字数 162 浏览 1 评论 0原文

我有一些具有这样 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 技术交流群。

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

发布评论

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

评论(3

黯然 2024-12-12 20:47:43

简单

你应该使用类!

<span  class="MySpan"> ...

<span  class="MySpan"> ...

<span  class="MySpan"> ...

$(".MySpan").click (....

simple

you should use class instead !!!

<span  class="MySpan"> ...

<span  class="MySpan"> ...

<span  class="MySpan"> ...

$(".MySpan").click (....
百合的盛世恋 2024-12-12 20:47:43

以 (^=) 开头,

例如 $("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/

☆獨立☆ 2024-12-12 20:47:43
    $("*[id^='button']").click(
        function() {
        }
     );
    $("*[id^='button']").click(
        function() {
        }
     );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文