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

bottonName = bottonName || 'first';

这句话怎么理解?

    function update(first,last,bottonName) {

        first.text(bottonName);

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

        last.text(n + 1);

    }

这个update函数能不能解释一下

正在回答

2 回答

 function update(first,last,bottonName) {
         first.text(bottonName);        // 将传递过来的first参数文本改为bottonName
         var n = parseInt(last.text(), 10);        //获取当前last.text的文本内容,10进制取值,建立变量n,赋值为所取得的值。
         last.text(n + 1);    } // 将传递进来的last参数文本内容修改为n+1,实现点击数按照实际点击数增加。

bottonName =bottonName || 'first' 楼上的解释应该没错。

新手,如果理解有偏颇还请指正,谢谢。

1 回复 有任何疑惑可以回复我~

如果存在bottonName,则bootonName=bottonName,否则,bottonName=first

update既不是jquery函数也不是原生函数,是自定义函数,你可以自己随意改动他的参数跟功能,只要调用的时候保持名称一致就可以

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

bottonName = bottonName || 'first';

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