当我使用下面的内容时,我无法让jQuery this
隐藏元素。
$('.purplePanda').click(function(e){
this.hide();
});
我收到此错误:
Uncaught TypeError: this.hide is not a function
答案 0 :(得分:2)
修改您的代码:
$('.purplePanda').click(function(e){
this.hide();
});
至此:
$('.purplePanda').click(function(e){
$(this).hide();
});
现在应该工作。