私は 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の方法でそれを行う方法を知っている人はいますか?
ご協力ありがとうございました。