gpt4 book ai didi

javascript - Chrome 扩展程序 '$ is not defined'

转载 作者:行者123 更新时间:2023-12-01 00:14:37 28 4
gpt4 key购买 nike

我已经复制了教程中的代码,我想我可能缺少新添加的内容。这是我的 popup.js 文件内部,该文件在我的 popup.html 文件中正确链接。这里的目标是拥有一个预算跟踪器,将输入添加到“总计”id。

这是我在 popup.js 中使用的代码

$(function() {
$('#spendAmount').click(function() {
chrome.storage.sync.get('total', function(budget) {
var newTotal = 0;
if (budget.total) {
newTotal += parseInt(budget.total);
}

var amount = $('#amount').val();
if (amount) {
newTotal += parseInt(amount);
}

chrome.storage.sync.set({
'total': newTotal
});

$('#total').text(newTotal);
$('#amount').val('');

});
});
});
<!DOCTYPE html>
<html>

<head>
<title>Budget Manager</title>
<script type="text/javascript" src="popup.js"></script>
<script type="text/javascript" src="jquery-3.4.1.min.js"></script>
</head>

<body>
<h1>Budget Manager</h1>
<h2>Total Spent: <span id="total">0</span></h2>
<h2>Limit: <span id="limit"></span></h2>
<h3>Enter Amount</h3>
<input type="text" id="amount" />
<input type="submit" id="spendAmount" value="Spend">
</body>

</html>

manifest.json

{
"manifest_version": 2,
"name": "Budget Manager",
"version": "1.0",
"description": "This extension tracks your overall spendings.",
"icons": {
"128": "icon128.png",
"48": "icon48.png",
"16": "icon16.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},

"permissions": [
"storage"
]
}

最佳答案

您正在脚本之后加载 jQuery。当你的脚本执行时没有 jQuery,所以当时 $ 没有定义。将弹出窗口移至 jQuery 下面

    <script type="text/javascript" src="jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="popup.js"></script>

关于javascript - Chrome 扩展程序 '$ is not defined',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59854089/

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