ajax.abort 终止AJAX请求
$(document).ready(function () { var ajax; $('#choice').change(function() { if(ajax) { ajax.abort(); } ajax = $.get( 'wait.php', { what : $(this).val() }, function(response) { $('#response').html(response); }, 'html' ); }); });
$(document).ready(function () { var ajax; $('#choice').change(function() { if(ajax) { ajax.abort(); } ajax = $.get( 'wait.php', { what : $(this).val() }, function(response) { $('#response').html(response); }, 'html' ); }); });