📜  在 ajax 回调中引用 self - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:39.092000             🧑  作者: Mango

代码示例1
$.ajax({
    context: this,
    type: 'post',
    url: '',
    data: 'action='+$action+'&user_id='+$user_id,
    success: function(response){
       //can access this now!
    }
});