He元素

Don't be shy just try!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

jQuery自定义类封装:

(function ($) {
    $.DragField = function (arg) {
        var name = "你好";     //这个是私有变量,外部无法访问
        this.testFun = function () {     //this.testFun方法,加上了this,就是公有方法了,外部可以访问。
            alert(arg.title + "," + name);
        };
    };
})(jQuery);

 

使用方法:

var a = new $.DragField({ title: "Hi" });
var b = new $.DragField({ title: "Hello" });
a.testFun();
b.testFun();

 

posted on 2016-02-14 14:57  He元素  阅读(364)  评论(0编辑  收藏  举报