zoukankan      html  css  js  c++  java
  • miniJquery

    (function () {

    var _$ = window.$;
    var _jQuery = window.jQuery;
    //暴露外部使用的一个接口
    var jQuery = window.jQuery = window.$ = function(selector){

    return new jQuery.fn.init(selector);
    };

    //处理原型对象
    jQuery.fn = jQuery.prototype = {
    init:function(selector){
    var elements = document.getElementsByTagName(selector);
    Array.prototype.push.apply(this,elements);
    return this;
    },
    jQuery:"1.0.0",
    length:0,
    size:function(){
    return this.length;
    }

    };
    jQuery.fn.init.prototype = jQuery.fn;
    //实现继承,并且只处理只有一个参数,也就是插件的扩展
    jQuery.extend = jQuery.fn.extend = function(){
    var o = arguments[0];
    for(var p in o){
    this[p] = o[p];
    }
    };

    //添加静态方法
    jQuery.extend({
    trim:function(text){
    return (text||"").replace(/^\s+|\s+$/g,"");
    },
    noConflict:function(){
    window.$ = _$;
    window.jQuery = _jQuery;
    return jQuery;
    }
    });
    //添加实例方法

    jQuery.fn.extend({
    get:function(num){
    return this[num];
    },
    each:function(fn){
    for(var i = 0 ;i< this.length; i++){
    fn(i,this[i]);
    }
    return this;
    },
    css:function(){
    var l = arguments.length;
    if(l == 1){
    return this[0].style[arguments[0]];
    } else {
    var name = arguments[0];
    var value = arguments[1];
    this.each(function(index,ele) {
    ele.style[name] = value;

    });
    }
    return this;
    },
    });

    })();

  • 相关阅读:
    Xcode Debugging
    GCD 深入理解
    iOS GCD编程
    iOS 面试之Block
    iOS SDWebImage 实现原理
    Block 初试
    通讯录
    UIScrollerView 的简单使用
    NSSet NSMutableSet的简单使用
    code
  • 原文地址:https://www.cnblogs.com/chenze/p/7899949.html
Copyright © 2011-2022 走看看