标签:nbsp func function ajax alert 提交 business cache ror
$.ajax({
url: ‘/Business/GetInsuranceDetail‘, //请求的地址
data: {
"UserID": $("#UserID").val() // 参数名:值
},
type: ‘post‘, //提交方式post或get
cache: false,
dataType: ‘json‘,
success: function (data) {
var name = data.UserName;
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
$.messager.alert(‘提示‘, ‘异常!‘, ‘error‘);
}
});
标签:nbsp func function ajax alert 提交 business cache ror
原文地址:http://www.cnblogs.com/wushijie/p/7102461.html