前台页面如何输出json数据呢?

2024-11-29 23:39:24
推荐回答(2个)
回答1:

回调函数jsonto就是一个json数组,直接在回调函数里面解析json,然后用js控制让它在什么地方显示;
参考实例如下:
$(function() {
$("#btn").click(function() {
$.ajax({
url : "import.jsp",
dataType : "json",
type : "post",
timeout : 5000,
success : showresult,
error : function() {
alert("error");
}
});
});
});
function showresult(jsonto) {
alert(jsonto);
}

回答2:

不用数组啊
你这样试试
var str = {"id":2,"tel":"010-23456789"};
alert(str.id);
alert(str.tel);