javascript可以发送网络请求,而ajax对其进行了封装。
以下是ajax发送请求实例
$("#"+form).ajaxSubmit({
url: path,type: 'POST',dataType: 'xml',success: function (xmlDoc) {
var retCode = $(xmlDoc).find('suess').text();
if(retCode=="1")
{
alert("添加成功");
}else if(retCode=="0")
{
alert("添加失败");
}else
{
alert(retCode);
}
},//submit success
error: function (data) {
alert("添加失败");
}
}); //ajaxSubmit
原文链接:https://www.f2er.com/ajax/161340.html