gpt4 book ai didi

javascript - 未捕获的 TypeError : $. get 不是 :1:3 处的函数

转载 作者:行者123 更新时间:2023-12-02 23:22:00 24 4
gpt4 key购买 nike

我正在开发修改 youtube 主页的 Google Chrome 扩展,但我无法执行 $.get jQuery 函数。 jQuery 源包含在 json 文件中。完整的错误消息是 Uncaught TypeError: $.get is not a function 于:1:3。

我检查了我的 jQuery 源不是精简版本。我的 jQuery 选择器似乎运行良好,但是当我尝试运行 $.get() 时,它说它不是一个函数。

//main.js file
//code that works
//removes the content from the page and adds a quote and a picture
let content=$('#contents')
let contentParent = content.parent();
content.remove()
contentParent.prepend("<h1> Get back to achieving your dreams!!!</h1>")
$("h1").addClass("beautText")

//code that doesn`t work
$.get('https://picsum.photos/list', function(result) {
// result is whatever the URL sends back from the request
console.log(result)
})

这是我的manifest.json 文件

//manifest.json file
{
"manifest_version": 2,
"name": "Focus",
"version": "1.0",
"description":"This app has a unique functionality that keeps you stayin` focused",
"content_scripts": [
{
"css": [ "index.css" ],
"matches": ["https://www.youtube.com/*"],
"js": ["jquery.min.js","./main.js"]
}
],
"icons": {
"48": "icon48.png"},
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html",
"default_title": "Focus!"
}
}

我希望在控制台中获得结果 [Object,Object,Object...],但收到一条错误消息,指出 $.get() 不是函数。我花了很多时间来弄清楚为什么会发生这种情况,但我真的很困惑。感谢您的帮助!!!

最佳答案

感谢大家的评论。它似乎适用于其他人的笔记本电脑,但不适用于我的笔记本电脑。答案很简单,但我想说以防万一有人也遇到问题:我在 Chrome 工具中隐藏了控制台消息。

我在“过滤器”窗口中输入了一些内容,它阻止了消息在控制台中弹出。

关于javascript - 未捕获的 TypeError : $. get 不是 <anonymous>:1:3 处的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56908479/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com