前台页面如何输出json数据呢?
{"id":2,"tel":"010-23456789"}我现在用ajax方法得到这样一个json字符串应该怎么遍历不要用数组...
{"id":2,"tel":"010-23456789"}
我现在用ajax方法得到这样一个json字符串 应该怎么遍历
不要用数组 展开
我现在用ajax方法得到这样一个json字符串 应该怎么遍历
不要用数组 展开
2015-08-10
展开全部
回调函数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);
}
<input type="button" value="数据导入" id="btn"/>
参考实例如下:
$(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);
}
<input type="button" value="数据导入" id="btn"/>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询