1、
$('#submit-btn').click(function(event){ event.preventDefault();//每个ajax请求前都加上这句,阻止默认的事件触发。否则可能会引起 http请求canceled $.ajax({...});})