为什么某些浏览器无法获取JSON?
各位好,我遇到了一个难题,我想在前台用jquery的getJSON想获取json数据。现在遇到的麻烦是,我测试了有些浏览器可以正常执行(chrome跟safari可以),...
各位好,我遇到了一个难题,我想在前台用jquery的getJSON想获取json数据。现在遇到的麻烦是,我测试了有些浏览器可以正常执行(chrome跟safari可以),有些浏览器却不能(360跟IE不可以)。下面贴出代码:
index.html:
<html><head><title>5S</title> <link rel="stylesheet" href="css/jquery.mobile-1.3.2.min.css"> <link rel="stylesheet" href="css/index.css"><script src="js/jquery-1.8.3.min.js"></script><script src="js/jquery.mobile-1.3.2.min.js"></script> <script src="js/index.js"></script> </head> <body> </body></html>
index.js:
pv_gsshowdept = "";
$(document).ready(function(){$("#fm_gs_show").bind('pagebeforeshow', function(event) { //alert(pv_gsshowdept); $$("fm_gs_show_h").innerHTML = pv_gsshowdept; $("#fm_gs_show_imgdiv").empty(); var myjson = "http://192.168.0.30:81/fkfs/jsons/json_deptimprove.php?dept="+$.trim(pv_gsshowdept);// console.log("json语句是:"+myjson);alert("json语句是:"+myjson);$.getJSON(myjson, function(data) { $.each(data, function(k, v) { // alert(v);var mystr = " <div> <img src='files/pr/"+$.trim(pv_gsshowdept)+"/"+v+"' style='width:100%; height:auto;' /> <p>"+v+"</p> </div>" ;// console.log(v+mystr);$("#fm_gs_show_imgdiv").append(mystr); }) }); });});
代码就是这么多了,我为了验证,在PHP文件里加了一段插入数据库的功能,能访问的浏览器可以正常插入数据,不能的就没有插入。我都困扰了,谢谢各位。 展开
index.html:
<html><head><title>5S</title> <link rel="stylesheet" href="css/jquery.mobile-1.3.2.min.css"> <link rel="stylesheet" href="css/index.css"><script src="js/jquery-1.8.3.min.js"></script><script src="js/jquery.mobile-1.3.2.min.js"></script> <script src="js/index.js"></script> </head> <body> </body></html>
index.js:
pv_gsshowdept = "";
$(document).ready(function(){$("#fm_gs_show").bind('pagebeforeshow', function(event) { //alert(pv_gsshowdept); $$("fm_gs_show_h").innerHTML = pv_gsshowdept; $("#fm_gs_show_imgdiv").empty(); var myjson = "http://192.168.0.30:81/fkfs/jsons/json_deptimprove.php?dept="+$.trim(pv_gsshowdept);// console.log("json语句是:"+myjson);alert("json语句是:"+myjson);$.getJSON(myjson, function(data) { $.each(data, function(k, v) { // alert(v);var mystr = " <div> <img src='files/pr/"+$.trim(pv_gsshowdept)+"/"+v+"' style='width:100%; height:auto;' /> <p>"+v+"</p> </div>" ;// console.log(v+mystr);$("#fm_gs_show_imgdiv").append(mystr); }) }); });});
代码就是这么多了,我为了验证,在PHP文件里加了一段插入数据库的功能,能访问的浏览器可以正常插入数据,不能的就没有插入。我都困扰了,谢谢各位。 展开
展开全部
json不是标准javascript类型,某些浏览器不支持
解决办法:
1.要么引入json.js定义
2.要么引入jQuery(含json定义)
3.不使用JSON.parse和stringify方法,仅仅定义JSON结构的对象
{a:'1',b:'2'}
解决办法:
1.要么引入json.js定义
2.要么引入jQuery(含json定义)
3.不使用JSON.parse和stringify方法,仅仅定义JSON结构的对象
{a:'1',b:'2'}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询