标签: javascript jquery html5
我有一个类似的函数来为具有相同属性名称的多个id应用相同的事件。
<button id="hello">hello</button> <button id="hello">hello</button>
这是JQuery函数
$("#hello").click(function(event){ window.alert("hello"); });
但会影响第一个ID。有人知道如何对两个ID执行相同的效果。
由于