jquery – 如何为多个按钮使用一个单击事件处理程序

前端之家收集整理的这篇文章主要介绍了jquery – 如何为多个按钮使用一个单击事件处理程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有4个不同身份的按钮.当我点击它们时,我需要执行一个功能.所以我需要这样的东西:
$('#button #button').click(function()

解决方法

要一次选择4个按钮,请编写以下内容
$('#button1,#button2,#button3,#button4').click(function(event){ /* code here */ });

如果您需要确定按下了哪个按钮,请写下以下内容

$('#button1,#button4').click(function(event){ 
    if($(event.target).attr('id')=='button1'){
        /* specific code for button1 */
    } else if($(event.target).attr('id')=='button2'){
        /* specific code for button2 */
    } else if($(event.target).attr('id')=='button3'){
        /* specific code for button3 */
    } else if($(event.target).attr('id')=='button4'){
        /* specific code for button4 */
    } 
});
原文链接:https://www.f2er.com/jquery/181380.html

猜你在找的jQuery相关文章