Ajax responseText解析json数据案例详解
【来源:美国cn2服务器 转载请说明出处】
解决ajax处理服务器端返回结果responseText中是JSON的数据。
第一,json格式的文件内容如下:
{ "city":"ShangHai", "telephone":"123456789" }
第二,服务器端返回的json数据就是上述的内容在responseText中,现在要取出来,方法有两种:
方法1:
var json=JSON.parse(request.responseText); alert(json.city);
方法2:
var result = request.responseText; var jsonObject=eval("("+result+")"); alert(jsonObject.telephone);
到此这篇关于Ajax responseText解析json数据案例详解的文章就介绍到这了,更多相关Ajax responseText解析json数据内容请搜索hwidc以前的文章或继续浏览下面的相关文章希望大家以后多多支持hwidc!
【文章原创作者http://www.yidunidc.com/aqt.html 网络转载请说明出处】