我有2个名为Button1和Button2的html按钮.
这两个按钮使用jquery执行相同的操作.
现在我在下面显示的两个buttons.thats的click事件中写了相同的jquery
$('#Button1').click(function () { xyz //some jquery }) $('#Button2').click(function () { xyz //some jquery })
两个jquery都是一样的.我能抓住两者的点击事件吗?
单功能按钮?
解决方法
您可以使用
multiple selector:
$('#Button1,#Button2').click(function() { // You can use `this` to refer to the source element,for instance: $(this).css("color","red"); });