1

私は 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の方法でそれを行う方法を知っている人はいますか?

ご協力ありがとうございました。

4

1 に答える 1

1

多分試してください:

if (document.querySelectorAll(selector==null || undefined) {
//nothing there

} else {
tex = document.querySelectorAll(selector);
}
于 2013-10-12T03:51:40.290 に答える