日期:2014-05-17 浏览次数:20511 次
$.ajax({
type: "GET", //提交方式 GET/POST
url: "Ajax/getPlayerInof.ashx", //请求的URL地址(ashx/aspx)
data: "PlayerAccount=" + $(o).val(),//参数可以为null
async: false, //是否异步
error: function() { alert('数据加载失败!'); window.location = "ErrorPage.htm"; }, //如果执行出错后执行的函数
success: function(data) { //执行成功后执行的函数 data 是执行成功后返回的数据(json/xml/string)
if (data != "") {
//处理
}
}
}
});