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
结果相同
我正在尝试在加载页面时加载 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