感谢您对我的问题感兴趣。
我做了一个功能,当有人在比赛中获胜时(TicTacToe)会增加一分。
但是有一个小问题See Picture here 当某人赢得该分数时,应将其添加到总数中,而不是添加到该行中。
这是我在JS中使用的JS和HTML
function winnerScore() {
if (document.winner == 1) {
roundsInfo[3].innerHTML += 1;
}
else {
roundInfo[5].innerHTML += 1;
}
}
<h1>Scores</h1>
<table class="rounds-info">
<tr>
<td><img width="15" height="15" alt="" title="" src="img/cross.jpg" /> Speler 1</td>
<td>0</td>
</tr>
<tr>
<td><img width="15" height="15" alt="" title="" src="img/circle.jpg" /> Speler 2</td>
<td>0</td>
</tr>
<tr>
<td>Aantal rondes</td>
<td>0</td>
</tr>
提前致谢
答案 0 :(得分:0)
您正在将数字附加到字符串。它将串联连接为字符串。
您需要先将字符串转换为数字,然后添加数字。
以下内容应该:
.setResultTransformer(A.class)