本文实例讲述了jQuery+ajax+asp.net获取Json值的方法。分享给大家供大家参考,具体如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQueryAjaxJson取值示例</title>
<script type="text/javascript" src="Scripts/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#Button1").click(function () {
$.ajax({
url: 'AjaxQuery.aspx',
type: 'GET',
dataType: 'json',
timeout: 1000,
cache: false,
beforeSend: LoadFunction, //加载执行方法
error: erryFunction, //错误执行方法
success: succFunction //成功执行方法
})
function LoadFunction() {
$("#ddd").html('加载中...');
}
function erryFunction() {
alert("error");
}
function succFunction(tt) {
$("#ddd").html('');
var json = eval(tt); //数组
$.each(json, function (index, item) {
//循环获取数据
var name = json[index].Name;
var age = json[index].Age;
var sex = json[index].Sex;
$("#ddd").html($("#ddd").html() + "<br>" + name + " - " + age + " - " + sex + "<br/>");
});
}
});
})
</script>
</head>
<body>
<input type="button" id="Button1" value="获取json数据" />
<span id="ddd"></span>
</body>
</html>
//Ajax Post Text
function savedata(tempid) {
var tid = $('#hidtemplate').attr('value');
var desc = $("#contentdiv").html();
var num_iid = $("#num_iidArr").attr('value');
var num_iid2 = $("#num_iidArr001").attr('value'); //发布页面
var topsvalue = $("#tops").attr('value');
if (num_iid != "" && num_iid2 != "") {
$.ajax({
url: 'TabBaoHandler.ashx',
type: 'POST',
data: 'type=3&num_iid=' + num_iid2 + '&tid=' + tid + '&desc=' + desc + '&top_session=' + topsvalue,
dataType: 'text',
timeout: 20000,
cache: false,
//async: false, //同步
beforeSend: LoadFunction, //加载执行方法
error: erryFunction, //错误执行方法
success: succFunction //成功执行方法
})
function LoadFunction() {
showLoad("正在运行中...");
}
function erryFunction() {
$("#contentdiv").html("<p style="padding:5px"><img src="images/error.png" />sorry,提交失败</p>");
closeLoad();
}
function succFunction(tt) {










