1. 首页
  2. 数据库
  3. 其它
  4. jquery Source code analysis jquery source code

jquery Source code analysis jquery source code

上传者: 2021-04-08 22:44:44上传 ZIP文件 467.77KB 热度 31次
jquery原始解析 jquery对象 // jQuery的写法 var $jQuery = function(selector, context) { //JQ对象根本就是init函数的实例对象,而init则是jQuery原型上的一个对象,它本身是没有什么方法的,全靠从jQuery原型上拿 return new $jQuery.fn.init(selector, context); } $jQuery.fn = $jQuery.prototype = { init: function() { this.name = 'test' return this; }, constructor: $jQuery, sayName : function(){ console.log('ccc'); } } //为了调用$jQuery.fn = $jQ
用户评论