我正在尝试为移动设备创建一个库,并且我希望能够像 jquery 那样将对象作为函数和对象调用。
例子:
var test = function(elm) {
this.ajax = function(opt) { ... }
if ( elm ) {
var elms = document.querySelectorAll(elm);
}
}
我希望能够这样称呼它:
test("#id");
像这样:
test.ajax(opts);
LE: 谢谢你们的快速反应!