tigger的参数'last'是什么意思

来源:7-1 jQuery自定义事件之trigger事件

慕用9244143

2017-04-28 17:39

$("button:last").click(function() {
        $("button:first").trigger('click','last');
    });


写回答 关注

1回答

  • 砾鸥
    2017-04-28 18:08:14
    已采纳

    我觉得是把"last"作为参数,传给了第一个按钮的click事件里面的bottonName

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


    慕用9244...

    非常感谢!

    2017-04-28 18:20:11

    共 1 条回复 >

jQuery基础(三)—事件篇

jQuery第三阶段开启事件修炼,掌握对页面进行交互的操作

89997 学习 · 625 问题

查看课程

相似问题