我正在开发一个 javascript库,库语法如下tex(selector).function(specifier)
:这是我到目前为止所拥有的:
(function(){
var tex = function(selector,context){
//code
},
tex.prototype = {
show: function () {
this.style.display = "inherit";
return this
}
};
window.tex = tex
})();
我遇到的问题是如何设置this
元素。有谁知道我怎么能用 jQuery 的方式做到这一点?
谢谢大家的帮助。