asp.net 中jquery 简单使用ajax jquery的使用
大家知道使用javascript 中是用ajax非常复杂,需要判断浏览器的类型等,用jquery实现就比较简单。
主要代码:
$.ajax({
type: "get",
contentType: "application/json",
dataType: "json",
data: "Operation=Copy&GroupName=" + GroupName + "&FromGroup=" + FromGroup,
url: "ajax.aspx?time=" + (new Date().getTime()),
error: function(XmlHttpRequest, textStatus, errorThrown) { alert(XmlHttpRequest.responseText); },
success: function(d) {
switch (d.result) {
case "1":
CRMCommon.Alert(d.message, "1");
break;
case "0":
CRMCommon.Alert(d.message, "0");
break;
}
}
});
需要注意的是 dataType: "json", 这里返回的是json,当然也可以返回xml,text,js等,一些常用的类型。
……