gpt4 book ai didi

javascript - JSFiddle 代码无法在 Chrome 中运行

转载 作者:行者123 更新时间:2023-12-03 10:51:08 25 4
gpt4 key购买 nike

http://jsfiddle.net/G5Y8p/9/

我已经从上面给出的链接复制了这个 JSFiddle 代码。但是它在我的浏览器中不起作用,有人可以帮助我吗?我对这些事情还是新手。

$(document).ready(function () {

var $win = $(window),
w = 0,
h = 0,
rgb = [],
getWidth = function () {
w = $win.width();
h = $win.height();
};

alert($win.width());
$win.resize(getWidth).mousemove(function (e) {

rgb = [
Math.round(e.pageX / w * 255),
Math.round(e.pageY / h * 255),
150];

$('body').css('background-color', 'rgb(' + rgb.join(',') + ')');

}).resize();

});

最佳答案

我想将此添加为答案,因为评论部分根本无法处理我试图传达的内容。

当您在编辑器中运行代码时,JS Fiddle 通常不会生成引用。

尝试将以下内容添加到您的 HTML/PHP 或您用于标记的任何文件类型中。

<head> 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
</head>

听起来您没有包含对 JQuery 和 JQuery UI 的必要引用。

关于javascript - JSFiddle 代码无法在 Chrome 中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28413355/

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