问答详情
源自:7-1 jQuery自定义事件之trigger事件

为什么这样写就不能用了

 $("button:first").click(function(bottonName) {

        bottonName = bottonName || 'first';

        update($("span:first"),$("span:last"),bottonName);

    });


提问者:晨影影 2017-04-12 10:43

个回答

  • 夜猫sama的小弟
    2017-04-12 17:41:26

    第一个参数是事件,在JQ文档可以查的到,所以bottomName一定要写在第二个参数上