$.fn和$.extend书写方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$.fn和$.extend书写方式相关的知识,希望对你有一定的参考价值。
$.extend({
addMe:function(a,b){
console.log(a + b);
}
});
$.fn.extend({
showTest:function(){
console.log(this);
}
});
$.extend($.fn,{
showAge:function(){
console.log(this[0].dataset.age);
}
});
$("#test").showAge();
$("#test").showTest();
$.addMe(4,9);
此上三种写法都可以
以上是关于$.fn和$.extend书写方式的主要内容,如果未能解决你的问题,请参考以下文章
理解jquery的$.extend()$.fn和$.fn.extend()
区别和详解:jQuery extend()和jQuery.fn.extend()
区别和详解:jQuery extend()和jQuery.fn.extend()