手写jQuery框架

功能的实现只是机械地调用,框架的编写才是代码的升华

;
(function(window) {
	function jQuery(option) {
		this.event=[];
        switch(typeof option){
        	case "function":addEvent(window,"load",option);
        	break;
        	case "string":switch(option.charAt(0)){
        		case "#":
        		  var obj=document.getElementById(option.substring(1));
        		  this.event.push(obj);
        		  break;
        		case ".":
        		  this.event=getClass(document,option.substring(1));
        		  break;
        		default:
        		break;	
        		
        	}
        	break; 
        	default:
        	break;
        }
	}
	jQuery.prototype={
		click:function(fn){
			/*
			 *this是运行时绑定,指向的调用该方法的对象
			 *this.event是一个数组,不能直接添加事件绑定,这里用到for循环 
			 */
			for(var i=0;i


你可能感兴趣的:(jQuery,javascript,JavaScript,jquery,框架,函数,js)