1.将window.$保存在_$变量,这时window.$有两种情况,一、可能是undefined,二、在jq之前使用$的某个类库
2.jq初始化,将jQuery赋值给window.$
3.调用noConflict 方法,将之前保存的_$赋值给window.$
2.jq初始化,将jQuery赋值给window.$
3.调用noConflict 方法,将之前保存的_$赋值给window.$
2017-07-21
静态:$.each();
实例方法:$("img").each
其中$.each()是jquery.fn.each()方法;jquery.prototyp=jquery.fn;
$("img").each; 先通过jquery.fn.init()返回一个jquery的对象,jQuery.fn.init.prototype = ajQuery.fn;再调用each方法
实例方法:$("img").each
其中$.each()是jquery.fn.each()方法;jquery.prototyp=jquery.fn;
$("img").each; 先通过jquery.fn.init()返回一个jquery的对象,jQuery.fn.init.prototype = ajQuery.fn;再调用each方法
2017-06-30
后面改成这样就和$.each 这样的方法一样了
ajQuery.setName = function(myName) {
this.myName = myName
return this;
}
ajQuery.getName = function() {
$("#aaron").html(this.myName)
return this;
}
$$.setName('慕课网-Aaron').getName();
ajQuery.setName = function(myName) {
this.myName = myName
return this;
}
ajQuery.getName = function() {
$("#aaron").html(this.myName)
return this;
}
$$.setName('慕课网-Aaron').getName();
2017-06-14