$(this)和jQuery之间有什么区别,为什么有时会给出相同的结果和其他时间的行为有所不同?
解决方法
$(this)用jQuery功能包装它。
例如,此代码将失败:
$('.someDiv').onClick(function(){ // this refers to the DOM element so the following line would fail this.fadeOut(100); });@H_404_9@所以我们把它包装在jQuery中:
$('.someDiv').onClick(function(){ // wrap this in jQuery so we can use jQuery fadeOut $(this).fadeOut(100); });@H_404_9@