首先,我有个.js文件,里面有json格式的数据,下面是该JS内容。
a.js
({"IP":"192.168.1.1","price":"120"},{"IP":"192.168.1.2","price":"200"})
然后我需要用jquery读取该文件以取得数据
window.onload = (function(){
alert("1");
try{$.getJSON("a.js",
function(data){
alert("load");
});
}catch(e){}});
有alert("1")动作,无alert("load")动作。不知为何
IIS为7.5