同一页面为定义的函数什么必须加this才能引用。
onReady: function(){
this.readjiage(‘button1’);//此处为什么必须要加this,在同级别的函数不能直接调用吗。不加this,就说未定义。
},
readjiage: function (id) {
console.log(id);
},
onReady: function(){
this.readjiage(‘button1’);//此处为什么必须要加this,在同级别的函数不能直接调用吗。不加this,就说未定义。
},
readjiage: function (id) {
console.log(id);
},