Firebug 表明我有TypeError: a.ownerDocument is undefined
这个代码:
$(this).text('Updated!').fadeOut('900', function() {
$(this).text('Update').attr('disabled', 'disabled').show()
});
更完整的片段如下:
$(".update-role").click(function() {
var newRole = $(this).prev().val();
var userId = $(this).parents('tr').attr('id'); // e.g. 'user-role-18'
userId = userId.split('-');
userId = userId[2]; // so we get '18'
$.getJSON('services/update_staff_role.php', {r: newRole, id: userId}, function(j) {
if(j.result == 'success') {
$(this).text('Updated!').fadeOut('900', function() {
$(this).text('Update').attr('disabled', 'disabled').show()
});
} else {
alert(j.reason);
}
});
console.info(userId, newRole);
});
可能是因为我正在使用this
,因为我正在使用callback
另一个内部callback
?