gpt4 book ai didi

jquery - Uncaught ReferenceError : $ is not defined content. js :1(anonymous function) content. js :1 Chrome extension error?

转载 作者:行者123 更新时间:2023-12-01 07:54:26 35 4
gpt4 key购买 nike

这是我的manifest.json 文件。

{
"manifest_version": 2,
"name": "Test",
"version": "1",
"description": "Test",
"background": {
"scripts": [
"jquery.js",
"content.js",
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js",
"jquery.js"
],
"matches": [
"http://www.roblox.com/*",
"https://www.roblox.com/*",
"http://web.roblox.com/*",
"https://web.roblox.com/*"
],
"run_at": "document_end"
}
]
}

我的 jquery.js 文件和其他文件一样正常。

我的background.js只是告诉我文档何时准备好。

这是我的 content.js 文件。

$.get("http://www.roblox.com/--item?id=16412796", function(data){
console.log($(data).find(".notranslate")[0].innerText);
});

当然,由于某些奇怪的原因,它给了我这个错误。未捕获的ReferenceError:$未定义content.js:1(匿名函数)content.js:1我该如何解决它?

最佳答案

将 jQuery 移至第一位。脚本按列出的顺序执行。

        "js": [
"jquery.js",
"content.js"
]

关于jquery - Uncaught ReferenceError : $ is not defined content. js :1(anonymous function) content. js :1 Chrome extension error?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25676786/

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