我无法在<script>
中加载外部json文件。
<script>
function get_data()
{
$.ajax(
{
type: "GET",
url:"json.json",
dataType:"json",
async: true,
success:function(mainObject)
{
if (mainObject.text)
{ var JSONa = JSON.parse(mainObject.text); }
else
{ var JSONa = mainObject; }
}
}
);
}
get_data();
</script>
这是json文件在桌面上,html文件也在桌面上。文件名是corect,我也尝试过将url作为url:&#34; C:\ Users \ jathaker \ Desktop \ json.json&#34;。