我是 JavaScript 新手。抱歉,如果我的问题有任何问题。
如何向我们自己的库注入/创建/扩展方法或插件?这是“yourlib.js”
var Yourlib = (function() {
// privt. var
var selectedEl = {}
// some privt. funct
function something() {
}
return {
getById : function() {
},
setColor : function() {
}
}
}());
下面是你的“plugin.js”
/*
How to create the plugin pattern?
Example: I want to create/inject a method/plugin named "setHeight" .
So, i can call it later, like this: Yourlib.getById('an-id').setHeight(value);
How is the pattern?
*/