请,任何人都可以回答这个功能之间有什么区别:
$.getJSON("jsonData.json", function(data){
//function will be here
});
and
$.getJSON("http://www.some_site.com/jsonData.json", function(data){
//function will be here
});
在第一种情况下,功能正常(文件位于项目文件夹中的计算机上)。但在第二个 - 不。是什么原因?