$.ajax () This is the underlying AJAX implementation of jquery. Simple and easy-to-use high-level implementation see $.get, $.post, etc.
Here are a few Ajax event parameters: Beforesend, Success, complete, error. We can define these events to deal well with each of our AJAX requests.
$.ajax ({url: ' stat.php tutorial ',
Type: ' Post ',
Data:{name: "Keyun"},
DataType: ' HTML ',
timeout:1000,
Error:function () {alert (' Error loading PHP document ');
Success:function (Result) {alert (result);}
});
ajax.asp Tutorial x:
Response.ContentType = "Application/json"; Response.Write ("{result:" + request["name"] + ", Hello! (This message comes from server) '} '); jquery code:
$.post ("Ajax.aspx", {action: "POST", Name: "Lulu"}, function (data, textstatus) {//data can be xmldoc, jsonobj, HTML, text Wait a minute. This For this AJAX-requested option configuration information, refer to the This alert (Data.result) as mentioned in Jquery.get (). }, "JSON");