看來我無法訪問$(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();
}
});
如果你不能添加var,因爲它被封裝在一個函數中,例如:'$('。fileupload')。fileupload({dataType:'json',start:{} ... etc' – Alex 2017-02-16 05:39:59
應該是'$('。fileupload')'?如果是,那麼:'var $ t = $('。fileupload')。fileupload(...)' – nickf 2017-02-16 12:15:20
我創建了一個問題:http://stackoverflow.com/questions/42285542/access-this-in-event-jquery-file-upload – Alex 2017-02-16 22:03:23