为了账号安全,请及时绑定邮箱和手机立即绑定

update($("span:first"),$("span:last"),bottonName);最后到底获得的什么? function update(first,last,bottonName) {里面的first,last指的什么呢?

    <script type="text/javascript">

    //点击更新次数

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

        bottonName = bottonName || 'first';

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

    });

    //通过自定义事件调用,更新次数

    $("button:last").click(function() {

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

    });

    function update(first,last,bottonName) {

        first.text(bottonName);

        var n = parseInt(last.text(), 10);

        last.text(n + 1);

    }

    </script>

正在回答

0 回答

举报

0/150
提交
取消

update($("span:first"),$("span:last"),bottonName);最后到底获得的什么? function update(first,last,bottonName) {里面的first,last指的什么呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信