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

bottonName = bottonName || 'first';什么意思啊

 $("button:first").click(function(event,bottonName) {
        bottonName = bottonName || 'first';
        update($("span:first"),$("span:last"),bottonName);
    });

如题

提问者:一家之煮 2017-01-17 16:44

个回答

  • 慕粉2013053516
    2017-01-17 16:59:07
    已采纳

    个人理解是这样的,如果bottonName未定义,则取‘first’

  • 慕后端7340145
    2018-07-05 19:53:23

      update($("span:first"),$("span:last"),bottonName);  是什么意思