gpt4 book ai didi

javascript - 将我的 .js 文件与 .html 文件链接

转载 作者:行者123 更新时间:2023-12-02 16:25:33 25 4
gpt4 key购买 nike

我不知道我的编码出了什么问题,我的 .js 文件似乎无法在我的 html 文件中激活。请帮助我。

可以忽略其余的,我只想激活 html 中的 Javascript 文件。

var num1 = 0;
var num2 = 0;
var sum = 0;

function randomNumber(){
num1 = Math.floor((Math.random() * 10) + 1);
num2 = Math.floor((Math.random() * 10) + 1);
$("#number1").text(num1);
$("#number2").text(num2);
sum = parseInt(num1) + parseInt(num2);
}

randomNumber();

$(":button").click(function () {
var text = $(":text").val();
if(text == sum)
{
alert("Correct");
randomNumber();
$(":text").val("");

}
else
{
alert("Wrong");
randomNumber();
$(":text").val("");
}

});

它无法链接到我的 html 文件。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Lab Report</title>
<script src="jquery.js"></script>
<script src="myscript1.js"></script>

<style>
body{font-size:40px;
text-align:center;
background-color: #FC6;}
table {margin-top:200px;
background-color:white;}
td { width:150px;}
input {font-size:20px;}
span {font-size:40px;}
#correctScore{
background-color:green;


}
#wrongScore{
background-color:red;

}
</style>
</head>

<body>


<table width="800" border="1" align="center">
<tr>

<td colspan="6" align="right" id="timer"><span>Timer : 50 <span></td>


</tr>

<tr>

<td colspan="6" id="question"><span>Question 1/10<span></td>


</tr>


<tr>
<td><span>Correct<span></td>
<td id="correctScore"><span>0<span></td>
<td><span>Wrong<span></td>
<td id="wrongScore"><span >0<span></td>
<td></td>
<td></td>

</tr>
<tr>
<td><div id="number1">1</div></td>
<td><div>+</div></td>
<td><div id="number2">2</div></td>
<td><div>=</div></td>
<td><input type="text"></input></td>
<td><input type="button" value="Check"></input></td>

</tr>
</table>

</body>
</html>

最佳答案

我怀疑您要么收到 404 并且您的脚本根本没有加载,要么您的脚本抛出异常。您需要做的第一件事是确保使用适用于您使用的任何浏览器的开发工具成功下载所有资源。

接下来您需要做的就是将代码放入 jquery 就绪函数中,因为您使用了 jquery。

$(function() { 
//code goes here
});

如果仍然无法正常工作,请访问浏览器开发工具中的控制台并查看错误所在。

关于javascript - 将我的 .js 文件与 .html 文件链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28721741/

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