改成了接收两个参数的调用
var tab1 = new Tab(".js-tab",{
...参数
});
var Tab = function(el,obj){
//接收 自定义元素标签
this.tab = $(el);
//接收用户自定义参数
this.userconfig = obj;
getConfig 里面
var config = this.userconfig;
if(config && config!= "")
return config;
var tab1 = new Tab(".js-tab",{
...参数
});
var Tab = function(el,obj){
//接收 自定义元素标签
this.tab = $(el);
//接收用户自定义参数
this.userconfig = obj;
getConfig 里面
var config = this.userconfig;
if(config && config!= "")
return config;
2017-04-19
看到2分钟了,我先依葫芦画瓢,
匿名函数立即执行,定义构造函数,.prototype={}写上,window.Tab = tab绑定上,末尾括号内传参,开头括号内接收。
嗯!O(∩_∩)O哈哈~
匿名函数立即执行,定义构造函数,.prototype={}写上,window.Tab = tab绑定上,末尾括号内传参,开头括号内接收。
嗯!O(∩_∩)O哈哈~
2017-04-18