我有一个 html 页面,我在其中取出静态 json 文件的数据,该文件重命名为 .js 文件,并在本地服务器上放置一些位置,例如 10.211.20.62:8080/case1/county_json.js
我正在使用在 ie 6、7、8 中正常工作的代码,但在 google chrome、firefox 和其他浏览器中却没有。
Javascript代码
function setfilter() {
$.getJSON('http://10.211.20.62:8080/case1/county_json.js', function (data) {
}).error(function(jqxhr, textStatus, errorThrown) {
alert(errorThrown);
});
}
$(document).ready(function () {
jQuery.support.cors = true;
setfilter();
});
应该是什么问题?请帮忙!