jQuery getJSON报未定义函数错误

jQuery getJSON reported undefined function error

我正在尝试在加载页面时加载 json 文件。所以我尝试了这段代码:

$( document ).ready(function() {
    $.getJSON("./db/url.json", function(json) {
        console.log(json); 
    });
    console.log("The page is loaded"); 
});

导致此错误:

 [Show/hide message details.] TypeError: $.getJSON is not a function[Learn More]

看了一些类似的帖子,还是想不通。你能帮忙吗?

如果我使用 $.ajax

结果相同

确保您没有使用 slim 版本(差异在附件中的 link 中)。 苗条版不包括 .ajax.getJSON.

可以找到 jquery-3.1.1.min.js 的完整版本 here.

测试并查看结果。