11.jQuery工具方法$.Callbacks()的簡單實現

jQuery工具方法$.Callbacks()的簡單實現:css

(function () {
    //建立一個jQuery構造函數
    function jQuery(selector) {
        return new jQuery.prototype.init(selector);
    }
    //爲jQuery的原型添加init屬性,全部實例能夠使用該屬性
    jQuery.prototype.init = function (selector) {
        this.length = 0; //爲this添加length屬性,而且賦值爲0
        //選出 dom 而且包裝成jQuery對象返回
        //判斷selector是null 和 undefined 和 dom對象 和 id 和 class的狀況
        if (selector == null) { //判斷selector是null或undefined
            return this;
        } else if (typeof selector === 'string' && selector.indexOf('.') != -1) { //selector是class的狀況
            var dom = document.getElementsByClassName(selector.slice(1));
        } else if (typeof selector === 'string' && selector.indexOf("#") != -1) { //selector是id的狀況
            var dom = document.getElementById(selector.slice(1));
        }

        if (selector instanceof Element || dom.length == undefined) { //(selector是dom對象) || (selector是id,返回的是一個對象,對象沒有length屬性)
            this[0] = dom || selector; //(selector是id) || (selector是dom對象)
            this.length++;
        } else { //selector是class,返回的是一個類數組
            for (var i = 0; i < dom.length; i++) {
                this[i] = dom[i];
                this.length++;
            }
        }
    };

    //爲jQuery的原型添加css屬性,全部實例能夠使用該屬性
    jQuery.prototype.css = function (config) {
        for (var i = 0; i < this.length; i++) {
            for (var prop in config) {
                this[i].style[prop] = config[prop];
            }
        }

        return this; //鏈式調用的精髓
    };

    //爲jQuery對象的prevObject屬性賦值,從而能夠使用end()方法
    jQuery.prototype.pushStack = function (dom) {
        //dom是jQuery對象
        if (dom.constructor != jQuery) { //dom是原生的dom對象
            dom = jQuery(dom); //將原生dom對象包裹成jQuery對象
        }
        dom.prevObject = this; //

        return dom;
    };

    //爲jQuery的原型添加get屬性,全部實例能夠使用該屬性
    jQuery.prototype.get = function (num) {
        //num == null 返回數組
        //num >= 0 返回this[num]
        //num < 0 返回this[length + num]
        return (num != null) ? ((num >= 0) ? (this[num]) : (this[num + this.length])) : ([].slice(this, 0));
    };

    //爲jQuery的原型添加get屬性,全部實例能夠使用該屬性
    jQuery.prototype.eq = function (num) {
        return this.pushStack(this.get(num)); //調用jQuery.prototype.get()函數獲取到dom對象,再封裝爲jQuery對象而且爲jQuery對象添加prevObject屬性
    };

    //爲jQuery的原型添加add屬性,全部實例能夠使用該屬性
    jQuery.prototype.add = function (selector) {
        var curObj = jQuery(selector); //當前經過add添加的selector選中的jQuery對象
        var prevObj = this; //調用add()的jQuery對象
        var newObj = jQuery();

        for (var i = 0; i < curObj.length; i++) {
            newObj[newObj.length++] = curObj[i];
        }

        for (var i = 0; i < prevObj.length; i++) {
            newObj[newObj.length++] = prevObj[i];
        }

        this.pushStack(newObj); //爲jQuery對象添加prevObject屬性

        return newObj; //將合併後的jQuery對象返回
    };

    //爲jQuery的原型添加end屬性,全部實例能夠使用該屬性
    jQuery.prototype.end = function () {
        return this.prevObject; //直接返回前一個jQuery對象
    };

    //爲jQuery的原型添加on屬性,全部實例能夠使用該屬性
    jQuery.prototype.on = function (type, handle) {
        for (var i = 0; i < this.length; i++) {
            if (!this[i].cacheEvent) {//判斷每個原生dom對象中是否有事件
                this[i].cacheEvent = {}; //爲每個原生的dom對象添加綁定事件
            }
            if (!this[i].cacheEvent[type]) {//判斷每個原生對象是否有type類型的綁定事件
                this[i].cacheEvent[type] = [handle];//沒有則爲該類型事件添加處理函數數組
            } else {
                this[i].cacheEvent[type].push(handle);//若已經有該類型事件,則直接放入數組
            }
        }
    };

    //爲jQuery的原型添加trigger屬性,全部實例能夠使用該屬性
    jQuery.prototype.trigger = function (type) {
        var self = this;//將調用trigger函數的jQuery對象存放在self中
        var params = arguments.length > 1 ? [].slice.call(arguments, 1) : [];//判斷調用trigger()函數時是否傳入除了type之外的其餘參數
        for (var i = 0; i < this.length; i++) {//循環遍歷this
            if (this[i].cacheEvent[type]) {//判斷每一個原生dom對象中是否存放有type類型的事件
                this[i].cacheEvent[type].forEach(function (ele, index) {//有多個相同類型的事件時,要所有依次執行
                    ele.apply(self, params);//經過self調用事件,而且把參數傳入
                });
            }
        }
    };

    //爲jQuery的原型添加queue屬性,全部實例能夠使用該屬性
    jQuery.prototype.queue = function (type, handle) {
        var queueObj = this;//jQuery對象
        var queueName = arguments[0] || 'fx';//第一個形參,爲隊列名稱
        var addFunc = arguments[1] || null;//第二個形參,是處理函數
        var len = arguments.length;//獲取形參個數

        //若只傳了一個參數type,則直接返回隊列數組
        if(len == 1){
            return queueObj[0][queueName];
        }

        //取出jQuery中的dom對象,爲dom對象添加隊列事件
        queueObj[0][queueName] == undefined ? (queueObj[0][queueName] = [addFunc]) : (queueObj[0][queueName].push(addFunc));
        
        return this;
    };

    //爲jQuery的原型添加dequeue屬性,全部實例能夠使用該屬性
    jQuery.prototype.dequeue = function (type) {
        var self = this;
        var queueName = arguments[0] || 'fx';
        var queueArr = this.queue(queueName);

        var currFunc = queueArr.shift();
        if(currFunc == undefined){
            return ;
        }

        var next = function(){
            self.dequeue(queueName);
        }

        currFunc(next);
        return this;
    };

    //爲jQuery添加Callbacks屬性,jQuery能夠使用該屬性
    jQuery.Callbacks = function () {
        // 'once' 'memory' 'once memory' null
        
        var options = arguments[0] || '';// 存儲參數
        //存儲add來加入的方法
        var list = [];

        var fireIndex = 0;//記錄當前要執行函數的索引

        var fired = false;//記錄方法是否被fire過

        var args = [];//實際參數列表

        var fire = function(){
            for(; fireIndex < list.length; fireIndex++){
                list[fireIndex].apply(window, args)
            }
            if(options.indexOf('once') != -1){
                list = [];
                fireIndex = 0;
            }
        }

        return {
            add: function(func){
                list.push(func);
                if(options.indexOf('memory') != -1 && fired){//參數是'memory' && 已經執行過fired
                    fire();//接着執行後面add的函數
                }
                return this;
            },
            fire: function(){
                fireIndex = 0;
                fired = true;//
                args = arguments;
                fire();
            }
        }
    };

    //上面的jQuery構造函數是new 一個jQuery.prototype.init對象,
    //jQuery.prototype.init對象上沒有jQuery.prototype上的css()方法
    //因此添加下面一句,讓jQuery.prototype.init對象能夠調用jQuery.prototype上的css()方法
    jQuery.prototype.init.prototype = jQuery.prototype;

    //讓外部能夠經過$()或者jQuery()調用
    window.$ = window.jQuery = jQuery;
}());
myJquery.js

調用$.Callbacks()方法:html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script src="./myJquery.js"></script>
    <script>
        var cb = $.Callbacks();
        function a(){
            console.log("a null");
        }
        function b(){
            console.log("b null");
        }
        cb.add(a);
        cb.add(b);
        cb.fire();
        cb.fire();


        var cb = $.Callbacks('once');
        function c(){
            console.log("c once");
        }
        function d(){
            console.log("d once");
        }
        cb.add(c);
        cb.add(d);
        cb.fire();
        cb.fire();


        var cb = $.Callbacks('memory');
        function e(){
            console.log("e memory");
        }
        
        cb.add(e);
        cb.fire();
        function f(){
            console.log("f memory");
        }
        cb.add(f);
        cb.fire();
    </script>
</body>
</html>
index.html

效果展現:數組

相關文章
相關標籤/搜索