$(this)和jQuery之间有什么区别?

前端之家收集整理的这篇文章主要介绍了$(this)和jQuery之间有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$(this)和jQuery之间有什么区别,为什么有时会给出相同的结果和其他时间的行为有所不同?

解决方法

$(this)用jQuery功能包装它。

例如,此代码将失败:

$('.someDiv').onClick(function(){
    // this refers to the DOM element so the following line would fail
    this.fadeOut(100);
});

所以我们把它包装在jQuery中:

$('.someDiv').onClick(function(){
    // wrap this in jQuery so we can use jQuery fadeOut
    $(this).fadeOut(100);
});
原文链接:https://www.f2er.com/jquery/182117.html

猜你在找的jQuery相关文章