jquery – 如何访问$(this)里面的ajax成功回调函数

前端之家收集整理的这篇文章主要介绍了jquery – 如何访问$(this)里面的ajax成功回调函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
似乎我不能访问$(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();
    });
}
原文链接:https://www.f2er.com/jquery/183583.html

猜你在找的jQuery相关文章