jQuery方法在事件处理程序

时间:2015-05-03 16:30:01

标签: jquery html

当我使用下面的内容时,我无法让jQuery this隐藏元素。

$('.purplePanda').click(function(e){
   this.hide();
});

我收到此错误:

Uncaught TypeError: this.hide is not a function

1 个答案:

答案 0 :(得分:2)

修改您的代码:

$('.purplePanda').click(function(e){
   this.hide();
});

至此:

$('.purplePanda').click(function(e){
   $(this).hide();
});

现在应该工作。