我正在开发自己的 javascript 库。该库有一个getAttr()
这样操作的函数:tex(selector).getAttr(name);
这是该库的代码:
(function(){
var tex = function(s){
return new tex.fn.init(s);
};
tex.fn = tex.prototype ={
init : function(s){
if(!s){
return this;
}
else{
this.length = 1;
if (typeof s === "object"){
this[0] = s;
}
else if(typeof s === "string"){
var obj;
obj = document.querySelector(s);
this[0] = obj;
}
return this;
}
}
}
tex.fn.init.prototype = tex.fn;
tex.fn.init.prototype = {
attr : function(name, value){
/*if(name && !value){
return this[0].getAttribute(name);
}else if(name && value){
this[0].setAttribute(name,value);
};*/
this[0].setAttribute(name,value);
},
getAttr : function(name){
return this[0].getAttribute(name);
},
removeAttr : function(name){
this[0].removeAttribute(name);
},
print : function(txt){
this[0].innerHTML = txt;
}
};
window.TechX = tex;
})();
这是正文部分的代码:
<nav>
<ul>
<li><a id="MainDropper">Pick your method:</a>
<ul>
<li><a>book</a>
<ul>
<li><a data-val="Book" href="javascript:setType(this)">Book</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
这是我在头部的代码:
function setType(obj){
tex("#MainDropper").print(tex(obj).getAttr("data-val"));
}
因此,当我单击图书链接时,邮件投递器应该有文本“图书”。但相反,我在库中收到一个错误,上面写着“[object global] has no method getAttrribute
”。有谁知道我该如何解决这个问题?
太感谢了。