gpt4 book ai didi

javascript - Google Chrome 上的 "Uncaught ReferenceError: $ is not defined"错误(但适用于 Firefox 和 Safari)

转载 作者:行者123 更新时间:2023-11-29 18:24:07 25 4
gpt4 key购买 nike

我正在尝试让这个 SO 问题中的示例代码在我的系统上运行

getting the X/Y coordinates of a mouse click on an image with jQuery

它显示鼠标在 div 内单击时的位置。它在 FirefoxSafari 上运行良好,但在 Chrome 上没有更新,我想知道我是否做错了什么。我使用的是 Google Chrome 版本 23.0.1271.101

这是我正在使用的代码。

<html>

<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>

<body>
<p>Click to see the position!</p>
<div class="box" style="width: 200px; height: 200px; background: #F00">&nbsp;</div>
<p id="position">Position will go here</p>
<script>
$(document).ready(function() {
$('.box').click(function(e) {
var offset = $(this).offset();
$('#position').html(Math.round(e.clientX - offset.left) + ", " + Math.round(e.clientY - offset.top));
});
});
</script>

</body>
</html>

更新:这是我在 Chrome 的 JavaScript 控制台上看到的错误 Uncaught ReferenceError: $ is not defined 但我不确定该怎么做。

enter image description here

更新2:

我在打开 JavaScript 控制台的同时清除了浏览器缓存并重新加载了页面,发现了一个我以前从未见过的错误

[blocked] The page at https://<mywebsite>/index.html ran insecure content from http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js.
Uncaught ReferenceError: $ is not defined

所以,我下载了jquery.min.js 并将其放在与index.html 相同的目录中,并将脚本的加载更改为

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

它现在适用于所有三种浏览器....所以出于某种原因,Chrome 是唯一一个提示 jquery.min.js 的 url 不安全的浏览器。让问题更加复杂的是,当我进入 JavaScript 控制台时,它并没有给我这个错误,直到我清除了缓存并且我才看到它,我打开了 JavaScript 控制台。

最佳答案

您收到的错误是执行脚本时未加载 jQuery。因此,当您尝试使用它时, $ 未定义。

此外,您的屏幕截图未显示与示例相同的标记。

关于javascript - Google Chrome 上的 "Uncaught ReferenceError: $ is not defined"错误(但适用于 Firefox 和 Safari),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15328663/

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