IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 手写jQuery的bind和extend -> 正文阅读

[JavaScript知识库]手写jQuery的bind和extend

(function(){

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




	function markAll(dom,that){
        var res = that;
        //���dom��?�������?���?���??������dom��??���??�?�?�������?��init������
        for(var i = 0;i < dom.length;i++){
            res[i] = dom[i];
        }
        that.length = dom.length;
        //���?��init����������css��html��?����?��
        return that;
    }

	window.jQuery = window.$ = jQuery;

	jQuery.fn = jQuery.prototype = {
        init:function(selector){
           var dom=null;
        if(typeof selector != 'string'){
            //��?�����?���?�� window��this
            dom=[selector]
         }else{
             //��?��?��
             dom = document.querySelectorAll(selector);
         }     /*document.querySelectorAll(selector)���?���dom�??��������?����?�����󣬼�������?����?�?�init{
        0:'div'
    }
    ����������?��??�����������󴫻�?*/
            return markAll(dom,this);
        },
        css:function(){

        },
        html:function(){
            args = arguments;

            if(args.length == 1) {
                this[0].innerHTML = args[0];
            } else {
                return this[0].innerHTML;
            }
        },
        eq:function(){

        },
        bind: function( types, data, fn ) {
            return this.on( types, null, data, fn );
        },

        on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
            fn = data;
            data = selector;
            selector = undefined;
            jQuery.event.add( this, types, fn, data, selector );
        }
    }

    //实现trigger函数

    jQuery.Event = function( src, props ) {
        // Allow instantiation without the 'new' keyword
        if ( !(this instanceof jQuery.Event) ) {
            return new jQuery.Event( src, props );
        }

        // Event object
        if ( src && src.type ) {
            this.originalEvent = src;
            this.type = src.type;

            // Events bubbling up the document may have been marked as prevented
            // by a handler lower down the tree; reflect the correct value.
            this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||
                src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;

        // Event type
        } else {
            this.type = src;
        }

        // Put explicitly provided properties onto the event object
        if ( props ) {
            jQuery.extend( this, props );
        }

        // Create a timestamp if incoming event doesn't have one
        this.timeStamp = src && src.timeStamp || jQuery.now();

        // Mark it as fixed
        this[ jQuery.expando ] = true;
    }


    jQuery.event = {

        dispatch: function(event) {
            ret = handler.apply();
            event.result = ret;
            return event.result;
        },
    	add: function( elem, types, handler, data, selector ) {
    	    eventHandle = function( e ) {
                 // Discard the second event of a jQuery.event.trigger() and
                 // when an event is called after a page has unloaded
                 return handler.apply(elem) ;
            }
    	    elem[0].addEventListener( "click", eventHandle, false );

    	    return;
    	},

    }

jQuery.fn.init.prototype = jQuery.fn;


jQuery.extend = jQuery.fn.extend = function() {
    
    var src, copyIsArray, copy, name, options, clone,
    		target = arguments[0] || {},
    		i = 1,
    		length = arguments.length,
    		deep = false;

    	// Handle a deep copy situation
    	if ( typeof target === "boolean" ) {
    		deep = target;
    		target = arguments[1] || {};
    		// skip the boolean and the target
    		i = 2;
    	}

    	// Handle case when target is a string or something (possible in deep copy)
    	if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
    		target = {};
    	}

    	// extend jQuery itself if only one argument is passed
    	if ( length === i ) {
    		target = this;
    		--i;
    	}

    	for ( ; i < length; i++ ) {
    		// Only deal with non-null/undefined values
    		if ( (options = arguments[ i ]) != null ) {
    			// Extend the base object
    			for ( name in options ) {
    				src = target[ name ];
    				copy = options[ name ];

    				// Prevent never-ending loop
    				if ( target === copy ) {
    					continue;
    				}

    				// Recurse if we're merging plain objects or arrays
    				if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
    					if ( copyIsArray ) {
    						copyIsArray = false;
    						clone = src && jQuery.isArray(src) ? src : [];

    					} else {
    						clone = src && jQuery.isPlainObject(src) ? src : {};
    					}

    					// Never move original objects, clone them
    					target[ name ] = jQuery.extend( deep, clone, copy );

    				// Don't bring in undefined values
    				} else if ( copy !== undefined ) {
    					target[ name ] = copy;
    				}
    			}
    		}
    	}
    return target;
};


jQuery.extend({

	isReady: false
});

jQuery.extend({

	asy: false
});



jQuery.extend({

	isReady: true
});
})();

前端调用代码:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>菜鸟教程(runoob.com)</title>
<!--    <script src="jQuery.js">-->
    <script src="core.js">
    </script>

</head>
<body>

<p>点我!</p>

</body>

<script>
  $("p").bind("click",function(){
    alert("这个段落被点击了。");
  });
</script>

</html>

其实事件的思想很简单,1. 添加eventListener? 2.添加eventListener的eventHandler 3.在eventHandler里面执行希望执行的function,一般是将这个function当成handler传进去

extend其实就是定义了一个function,然后在

jQuery.extend({

   isReady: true
});

这种代码时被调用,而且根据代码顺序,后面的属性会覆盖前面的属性

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-04 12:02:05  更:2022-04-04 12:02:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:09:05-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码