我想将选择器值发送到原型。目前我正在使用
var selector; //id of html element
function $(selector)
{
if(window===this)
return new $(selector);
return this;
}
$.prototype={
tooltip: function(){
console.log(selector);
//do calculations with the selector value
return this;
}
};
它显示未定义。
有没有办法传递变量?