通过JQuery实现Ajax代码

时间:2021-08-18 17:59:21

今天早上遇到了这个问题,结果我写的顺序是惨不忍睹啊,所有现在留个模版以示标准。

$(function(){

  $.ajax({

    url : "Servlet",    //传地址

    type : "post",    //类型

    async : "true",    //是否异步

    data : { "action": "action" },  //数据

    dataType : "json",      //数据格式

    success : function(data){    //成功后操作

      alert("AJAX");

    }

  });

});