下面是一段比较常用到的 $.ajax 方法: $.ajax({ type:'GET', url:'http://www.phpernote.com/jquery.php', data:{username:'phpernote',password:'123456'}, dataType:'json', timeout:3000, cache:false, async:true, beforeSend:function(){ alert('请求之前'); }, success:function(da…