87,994
社区成员
发帖
与我相关
我的任务
分享$.fn.testExtsMthdsPrvtVar = function (options) {
this.read = function () {
return this.settings;
}
if (typeof options == "object") {
this.settings = $.extend({ name: "张三" }, options || {});
} else if (options == "read") {
this.read();
}
}let zs = $();
zs.testExtsMthdsPrvtVar({});
console.log(zs.testExtsMthdsPrvtVar("read"));