我想在 jquery 中再次调用相同的 ajax 请求时避免以前的 ajax 请求
<input type="text" id="username" onkeyup = "userName(this)" >
function userName(e) {
$.ajax({
type:"POST",
url:BasePath + "/users/userName",
data:"name=" + $.trim($(e).val()),
success:function (resp) {
if (resp == 1) {
$('#div.error_message').html('Username already taken...').show();
} else {
$('#div.error_message').hide();
}
}
});
}