bottonName = bottonName || 'first';
这句话怎么理解?
function update(first,last,bottonName) {
first.text(bottonName);
var n = parseInt(last.text(), 10);
last.text(n + 1);
}
这个update函数能不能解释一下
这句话怎么理解?
function update(first,last,bottonName) {
first.text(bottonName);
var n = parseInt(last.text(), 10);
last.text(n + 1);
}
这个update函数能不能解释一下
2018-08-02
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' 楼上的解释应该没错。
新手,如果理解有偏颇还请指正,谢谢。
举报