码迷,mamicode.com
首页 > 其他好文 > 详细

构造函数封装常用模板

时间:2016-08-27 22:01:32      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

(function(win,doc,$){
    // 声明构造函数
    var AddInfo = function(opt){
        // 初始化参数
        this.options = {
            triggerEl  : ‘‘,    // 触发弹框的元素
            modalEl    : ‘‘,    // 弹框对象
            tableList  : ‘‘     // table内容展示对象对象
        }
        // 引入传入的参数
        this.opt = $.extend(‘‘, this.options, opt || {});
 
        // 调用初始化方法
        this.init().getVal();
    }
    $.extend( AddInfo.prototype,{
        init : function(){
            var self = this;
            // 获取触发弹框的元素
            self.triggerEl = self.opt.triggerEl;
            // 获取弹框对象
            self.modalEl = self.opt.modalEl;
            // 获取对应table对象
            self.tableList = self.opt.tableList;
       // 链式调用
return this; }, getVal:function(){ var self = this; console.log($(self.tableList).val())
       // 链式调用
       return this; } }) win.AddInfo
= AddInfo; })(window,document,jQuery)

 

构造函数封装常用模板

标签:

原文地址:http://www.cnblogs.com/lvmylife/p/5813810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!