码迷,mamicode.com
首页 > Web开发 > 详细

jquery 那些事儿~

时间:2015-03-10 18:47:13      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

var $$ = ajQuery = function(selector) {
    return new ajQuery.fn.init(selector);
}

ajQuery.fn = ajQuery.prototype = {
    name: ‘aaron‘,
    init: function(selector) {
        this.selector = selector;
        return this;
    },
    constructor: ajQuery
}

//2个构造器关联的关键
ajQuery.fn.init.prototype = ajQuery.fn         

ajQuery.fn.say = function() {
    $("#aaron").html(this.name);
}

$$().say()

 

jquery 那些事儿~

标签:

原文地址:http://www.cnblogs.com/oceanden/p/4326631.html

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