似乎我不能访问$(this)里面的jquery ajax成功函数。请看下面的代码。
$.ajax({ type: 'post',url: '<?PHP echo site_url('user/accept_deny_friendship_request')?>',data: 'action='+$action+'&user_id='+$user_id,success: function(response){ //cannot access $(this) here $(this).parent().remove(); } });
解决方法
$(这)应该是什么?如果你在该函数之外引用了它,你可以将它存储到一个变量中。
$('#someLink').click(function() { var $t = $(this); $.ajax( ...,function() { $t.parent().remove(); }); }