由於某種原因,我無法將我的設置方法中的函數調用到我的init方法中。如何將方法內部嵌套的函數調用到其他方法中
// this is how I use it now(dont work)
Plugin.prototype = {
settings: function(){
function hello(name){
alert('hi, '+name)
}
},
init: function(){
this.settings()
hello('John Doe')
}
}
更好地解釋你想做 – Alexander
設置在它前面有一個下劃線...'this._settings()' – Shmiddty
對不起,那只是一個排字錯誤 – user759235