gpt4 book ai didi

javascript - 标识符已声明 - 标识符 'userScore' 已被声明

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

对 JS 非常陌生,正在尝试创建剪刀石头布游戏。我只是从 JS 方面开始,在声明 const 时在第 1 行遇到错误。

我已经看到这是否是 userScore 和 userScore_Span 冲突的问题通过删除后者。另外,如果我删除第 1 行,那么第 2 行会出现相同的错误。

标识符“userScore”已经声明

//Initialising the variables
const userScore = 0;
const computerScore = 0;
const userScore_span = document.getElementById("user-score");
const computerScore_span = document.getElementById("comp-score");
const scoreBoard_div = document.querySelector(".score-board");
const result_div = document.querySelector(".result");
const rock_div = document.getElementById("r");
const paper_div = document.getElementById("p");
const scissors_div = document.getElementById("s");

//This is the entire js file
@import url('https://fonts.googleapis.com/css?family=Asap&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Asap, sans-serif;
}

body {
background: #292C34;
}

header {
background: white;
padding: 20px
}

header > h1 {
color: #252728;
text-align: center;
font-size: 48px;
}

.score-board {
margin: 20px auto;
border: 3px solid white;
border-radius: 3px;
text-align: center;
padding: 15px 20px;
width: 200px;
color: white;
font-size: 46px;
position: relative;
}

.badge {
background: red;
color: white;
font-size: 14px;
padding: 5px;
border-radius: 5px;
}

#user-label {
position: absolute;
top: 40px;
left: -20px;
}

#comp-label {
position: absolute;
top: 40px;
right: -30px;
}

.result > p {
text-align: center;
}

.result {
font-size: 40px;
color: white;
}

.choices {
margin: 40px;
text-align: center;
}

.choice {
border: 4px solid white;
display: inline-block;
border-radius: 50%;
padding: 10px;
margin: 0 20px;
transition: all 0.6s ease;
}
.choice:hover {
cursor: pointer;
background: #24273E;
}

#action-message {
text-align: center;
color: white;
font-weight: bold;
margin-top: 10px;
font-size: 32px;
}
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="styles.css">
<script src="app.js" charset="utf-8"></script>
</head>
<body>
<header>
<h1>Rock Paper Scissors</h1>
</header>

<div class="score-board">
<div id="user-label" class="badge">User</div>
<div id="comp-label" class="badge">Comp</div>
<span id="user-score">0</span>:<span id="comp-score">0</span>
</div>

<div class="result">
<p>Paper covers rock. You Win!</p>
</div>

<div class="choices">
<div class="choice" id="r">
<img src="images/rock.png" alt="">
</div>
<div class="choice" id="p">
<img src="images/paper.png" alt="">
</div>
<div class="choice" id="s">
<img src="images/scissors.png" alt="">
</div>
</div>
<p id="action-message">Make Your Move</p>
<script src="app.js"></script>
</body>
</html>

最佳答案

您正在加载 app.js进入你的 HTML 两次 - 一次在你的文件的顶部,然后在你的 body 结束之前再次。这将运行 javascript 两次并尝试重新声明 const你已经定义了。 const无法在 javascript 中重新定义变量,这就是您看到此错误的原因。

这实际上会发生在您定义的所有变量上,您只会在 userScore 上看到它发生因为它恰好是第一个变量声明。

解决方案:删除其中一个 <script>正在加载的标签 app.js

关于javascript - 标识符已声明 - 标识符 'userScore' 已被声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56959810/

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