html 提交后跳转页面,html 提交后跳转页面
$(function () {
$.ajax({
url: 'jsondata.ashx',
type: 'GET',
dataType: 'json',
timeout: 1000,
cache: false,
beforeSend: LoadFunction, //加載執(zhí)行方法
error: erryFunction, //錯(cuò)誤執(zhí)行方法
success: succFunction //成功執(zhí)行方法
})
function LoadFunction() {
$("#list").html('加載中...');
}
function erryFunction() {
alert("error");
}
function succFunction(tt) {
$("#list").html('');
var json = eval(tt); //數(shù)組
$.each(json, function (index, item) {
//循環(huán)獲取數(shù)據(jù)
var name = json[index].Name;
var idnumber = json[index].IdNumber;
var sex = json[index].Sex;
$("#list").html($("#list").html() + "
" + name + " - " + idnumber + " - " + sex + "
");
});
}
});
溫馨提示:答案為網(wǎng)友推薦,僅供參考
總結(jié)
以上是生活随笔為你收集整理的html 提交后跳转页面,html 提交后跳转页面的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 科普dip,dp,sp,dpi,ppi,
- 下一篇: c语言单字符输入和输出函数分别为,第03