JQuery相同的点击功能,用于多个类似的id

时间:2015-06-28 03:19:39

标签: javascript jquery html5

我有一个类似的函数来为具有相同属性名称的多个id应用相同的事件。

<button id="hello">hello</button>
<button id="hello">hello</button>

这是JQuery函数

$("#hello").click(function(event){
          window.alert("hello");
      });

但会影响第一个ID。有人知道如何对两个ID执行相同的效果。

由于

0 个答案:

没有答案