我有2個名爲Button1和Button2的html按鈕。使用jquery訪問兩個按鈕的點擊事件
這兩個按鈕使用jquery執行相同的操作。
現在我寫了兩個buttons.thats的單擊事件下面
$('#Button1').click(function() {
xyz //some jquery
})
$('#Button2').click(function() {
xyz //some jquery
})
所顯示的兩個jQuery的相同相同的jQuery。我可以在單一功能中捕獲兩個 按鈕的點擊事件嗎?
可能的重複http://stackoverflow.com/questions/3810731/same-function-for-two-buttons-in-jquery – 2011-03-14 11:09:30