当前位置: 移动技术网 > IT编程>开发语言>JavaScript > 详解jquery选择器的原理

详解jquery选择器的原理

2017年12月12日  | 移动技术网IT编程  | 我要评论
详解jquery选择器的原理 html部分 <!doctype html> <html lang="en"> <hea

详解jquery选择器的原理

html部分

<!doctype html> 
<html lang="en"> 
<head> 
  <meta charset="utf-8" /> 
  <title>document</title> 
  <script src="js/minijquery.js"></script> 
</head> 
<body> 
  <div class="one">1</div> 
  <div class="two">2</div> 
</body> 
<script> 
  var result = $("div"); 
  console.log(result); 
  alert($('div').size()); 
</script> 
</html> js 

js部分

(function(){ 
  //暴露外部的引用 
  var jquery = window.jquery = window.$ = function(selector){ 
    return new jquery.fn.init(selector); 
  } 
   
  //添加原型事件 
  jquery.fn = jquery.prototype = { 
    // 
    init:function(selector){ 
      var element = document.getelementsbytagname(selector); 
      array.prototype.push.apply(this,element); 
      return this; 
    }, 
    myjquery:"the test one", 
    length:0, 
    size:function(){ 
      return this.length; 
    } 
  } 
   
  //将init的原型引用成jquery的原型 
  jquery.fn.init.prototype = jquery.fn; 
   
})(); 

我用我的理解解释一下,就是jquery原型里面有一个init初始化的方法,将传入的值进行解析,比如传入的id还是class还是标签名。然后通过相应的方法返回数组型对象。既可以通过对象直接调用方法,也可以使用数组的length。

以上就是jquery 原理的分析,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网