我有两个按钮
<input type="submit" id="update" value="Update">
<input type="submit" id="close" value="Close">
我想只为它们添加一次点击操作
示例构思:
$('#update || #close').click(function(){ // If update OR close button is clicked
//do something here
});
有可能吗?
或者我必须写两个不同的点击操作。
答案 0 :(得分:2)
逗号分隔multiple selectors。
$('#update,#close').click(function(){ // If update OR close button is clicked
//do something here
});
答案 1 :(得分:0)
$('#update,#close').click(function(){ // If update OR close button is clicked
//do something here
});
使用逗号(,)分隔选择器......
答案 2 :(得分:0)
您可以使用逗号,
$('#update, #close').click(function(){
//do something here
});
答案 3 :(得分:0)
$(document).ready(function(){
$('#update, #close').on('click', function(){
//do something here
});
});