我是一個PHP的傢伙,現在在我的第一插件IM學習
繼承人什麼IM高達
$.plugin.method({
test: 'helloworld'
});
$.plugin.method({
test: 'another helloworld'
})
我的繼承人函數或類?
// class ?
jquery.plugin = function(){
// variables
var test = [];
// function ?
var method = function(params){
test[] = params['test']
}
console.log(test)
}
什麼IM期待
test = ['helloworld','another helloworld']
我們能做到這一點在JavaScript?我是否正確?
謝謝!
你試過了嗎? – JJJ
是的,我做了,它是空的。讓我再嘗試一次。對不起,方法錯了啊。更新了問題。抱歉。 –
felix,所以$ .plugin.method()是一個函數嗎?不調用插件內的方法? –