出于某种原因,我无法将设置方法中的函数调用到我的 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')
}
}