gpt4 book ai didi

javascript - Myscript 在我的本地主机上不工作,但如果在 jsfiddle 中就没问题

转载 作者:太空宇宙 更新时间:2023-11-03 22:55:50 25 4
gpt4 key购买 nike

我不知道我的代码有什么问题。如果我的脚本在 jsfiddle 中运行就没问题。但如果在我的计算机(本地主机)中它不工作。

这是我的 jsfiddle:JSFIDDLE

这是我在电脑上运行的脚本

<html>
<body>
<input id="nominal" type="text" />
<script>
$(function() {
var money = 20000;

$("#nominal").on("change keyup", function() {
var input = $(this);

// remove possible existing message
if( input.next().is("form") )
input.next().remove();

// show message
if( input.val() > money )
input.after("<form method=\"post\" action=\"\"><input type=\"submit\" name=\"yes\" value=\"Yes\"><input type=\"submit\" name=\"no\" value=\"No\"></form>");
});
});
</script>
</body>
</html>

最佳答案

您需要包含 jQuery 库才能使用 jQuery 函数:

把这个放在你的脚本标签之上:

<script   src="https://code.jquery.com/jquery-3.1.0.slim.js"   integrity="sha256-L6ppAjL6jgtRmfiuigeEE5AwNI2pH/X9IBbPyanJeZw="   crossorigin="anonymous"></script>

<script>
$(function() {
var money = 20000;

$("#nominal").on("change keyup", function() {
var input = $(this);

// remove possible existing message
if( input.next().is("form") )
input.next().remove();

// show message
if( input.val() > money )
input.after("<form method=\"post\" action=\"\"><input type=\"submit\" name=\"yes\" value=\"Yes\"><input type=\"submit\" name=\"no\" value=\"No\"></form>");
});
});
</script>

它将 jQuery 从 CDN 加载到您的页面。

关于javascript - Myscript 在我的本地主机上不工作,但如果在 jsfiddle 中就没问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38461455/

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