补充1:asp.net 与后台交互除了用之前写得$.ajsx()外 还可以直接使用$.get() , $.post()等。
补充2:jquery 跨域请求
例如:
JSONP 跨域:
$.ajax({
type: "get",
dataType: "jsonp",
jsonp: "callback",
data: { "name": "zs" },
url: "About.aspx", //当前code所在页面为 Index.aspx.
success: function (data) {
alert(data);
}, error: function (e) {
alert(e);
}
})
.....记录点滴