- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码有问题,我一直在尝试查看它有什么问题,但没有成功,我真的需要帮助。这里的问题是,代码对于两个玩家来说运行良好(还没有完成一个玩家的部分,即人工智能),但是当我按下重置按钮时,它不起作用,所有变量似乎都重置了,我'我猜测这是一些概念错误。 Here is the code ,问题出在第 108 行,我相信,当我做第一个游戏时,它工作正常,但随后它开始变得疯狂,就像某些东西没有重置好一样,我很抱歉,如果这是我犯的菜鸟错误,但我我对此很陌生。
如果您不想检查codepen链接,则代码是这样的:
$(document).ready(function(){
//Lets work on the variables and what they do
var set=0; //I'll use this to control the 3x3 grids
var tempx=0; //I'll use this to control player X
var temp0=0; //I'll use this to control player O
var myturn='X'; //This is what I'll actually put out in the grid and is the human player
var AI='O'; //But it will change according on who's the first player to move and is the Computer
var contador=0;
//I declare the winning conditions for player vs player
var onex=0;
var onexx=0;
var twox=0;
var twoxx=0;
var threex=0;
var threexx=0;
var one0=0;
var one00=0;
var two0=0;
var two00=0;
var three0=0;
var three00=0;
//This is especifically for AI vs player
//Going to set the original state of everything
$('.reset').hide();
$('.player').hide();
$('.turns').hide();
$('.whichplay').hide();
//First lets work on each button function
//Reset button!
function reset(){
$('.rows').prop("disabled",true);
$('.reset').hide();
$('.player').hide();
$('.turns').hide();
$('.whichplay').hide();
$('.two-players').show();
$('.one-player').show();
$('.text').show();
$('#playo').prop('disabled', false);
$('#playx').prop('disabled', false);
$('.rows').empty();
set=0;
temp0=0;
tempx=0;
contador=0;
onex=0;
onexx=0;
twox=0;
twoxx=0;
threex=0;
threexx=0;
one0=0;
one00=0;
two0=0;
two00=0;
three0=0;
three00=0;
console.log('tempx after reset is '+tempx);
console.log('temp0 after reset is '+temp0);
}
$('.reset').click(function(){
reset();
});
function start(){
console.log('IM STARTING LOOOOK')
$('.one-player').hide();
$('.reset').show();
$('.player').show();
$('.two-players').hide();
$('.text').hide();
$('.whichplay').show();
//set=2;
//console.log('set is '+set);
$('.rows').removeAttr('disabled');
//Player X function
$('#playx').click(function(){
$('.whichplay').hide();
$('.turns').show();
$('#playo').prop('disabled', true);
$('#playx').prop('disabled', true);
$('.rows').prop("disabled",false);
tempx=1;
console.log('tempx after start is '+tempx);
console.log('tempO after start is '+temp0);
});
//Player O function
$('#playo').click(function(){
$('.whichplay').hide();
$('.turns').show();
$('#playo').prop('disabled', true);
$('#playx').prop('disabled', true);
$('.rows').prop("disabled",false);
temp0=1;
console.log('tempx after start is '+tempx);
console.log('tempO after start is '+temp0);
});
};
//When I hit one of these two options I will go into GAME MODE
//LETS ENTER GAME MODE!
$('.one-player').click(function(){
//start();
console.log('ERROR');
});
$('.two-players').click(function(){
start();
$('.rows').click(function(){
//I will create a variable that will store the ID's from the grid I click
var idstore=$(this).attr('id');
$(this).prop("disabled",true);
contador++;
//Now I got to control the turns X and O
if(tempx===1){
$(this).text('X');
console.log('This is the letter '+$(this).text('X'));
var s=$(this).get(0).id; //With this I extract the ID value into a string
tempx=0; //I close PX turn
temp0=1; //I start PY turn
var checker0=s.charAt(0); //I check the first letter of the id
var checker1=s.charAt(1); //I check the second letter of the id
$('#playo').show(); //I show its PO turn
$('#playx').hide();
if(checker0==='1'){
onex++; //Everytime this gets up to 3 PX win because it means a full row
//console.log('onex is '+onex);
}else if(checker0==='2'){
twox++; //Same here because it means a full row
//console.log('twox is '+twox);
}else if(checker0==='3'){
threex++; //Aaaaand same
//console.log('threex is '+threex);
}
if(checker1==='1'){
onexx++; //This means a full column
//console.log('onexx is '+onexx);
}else if(checker1==='2'){
twoxx++; //This means another full column
//console.log('twoxx is '+twoxx);
}else if(checker1==='3'){
threexx++; //Same
//console.log('threexx is '+threexx);
}
if(onexx===3||onex===3||twoxx===3||twox===3||threex===3||threexx===3){
alert('Player X win!'); //This checks full rows and columns
$('.rows').prop("disabled",true);
}else if(onexx===1&&onex===1&&twoxx===1&&twox===1&&threex===1&&threexx===1){
alert('Player X win!'); //This is for diagonals
$('.rows').prop("disabled",true);
}else if(contador===9){
alert('draw..');
$('.rows').prop("disabled",true);
}
}else if(temp0===1){
$(this).text('O');
var ss=$(this).get(0).id;
tempx=1;
temp0=0;
var checker00=ss.charAt(0);
var checker11=ss.charAt(1);
$('#playo').hide();
$('#playx').show();
//We're going to check the winner
if(checker00==='1'){
one0++;
//console.log('one0 is '+one0);
}else if(checker00==='2'){
two0++;
//console.log('two0 is '+two0);
}else if(checker00==='3'){
three0++;
//console.log('three0 is '+three0);
}
if(checker11==='1'){
one00++;
//console.log('one00 is '+one00);
}else if(checker11==='2'){
two00++;
//console.log('two00 is '+two00);
}else if(checker11==='3'){
three00++;
//console.log('three00 is '+three00);
}
if(one00===3||one0===3||two00===3||two0===3||three0===3||three00===3){
alert('Player O win!');
$('.rows').prop("disabled",true);
}else if(one00===1&&one0===1&&two00===1&&two0===1&&three0===1&&three00===1){
alert('Player O win!');
$('.rows').prop("disabled",true);
}else if(contador===9){
alert('draw..');
$('.rows').prop("disabled",true);
}
}
});
});
});
最佳答案
发生这种情况是因为当您使用启动函数时,它会在 .rows
中添加绑定(bind)单击函数。然后在重置后,您没有删除绑定(bind),而是将另一个绑定(bind)重新添加到 .rows
点击函数中。
可以通过使用.on
.off
点击功能来避免这种情况。当你想附加点击功能时,你使用.on
,当你重置或删除它时,你使用off
$( ".rows" ).off( "click");
$('.rows').on("click", function(){
});
关于javascript - 我的 JQUERY 的重置按钮让我的 TIC TAC TOE 代码变得疯狂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44448025/
我是初学者,所以我的代码很乱。我还没有完整地评论这个游戏,所以如果你需要澄清一些变量,我可以给你。 (顺便说一句,这是一个要求制作井字游戏的c++项目) 我的主要问题是,我将如何重复我的棋盘(每次有人
我正在为C的Tic Tac Toe代码编写一个简单的游戏。我已经完成了大部分代码,但是我希望AI永不丢失。 我已经阅读了有关minimax算法的信息,但我不理解。如何使用此算法使计算机获胜或平局,但永
感谢这里人们的帮助,我成功地禁用了点击 div 并在已经使用 $(".pos").addClass('already-played'); 选择它们时覆盖它们; 以及 CSS 中的这个: .已经播放{
我有一个井字棋游戏,其中用户(x)玩CPU(o)。游戏开始时,CPU 将 (o) 放置在中心,并在用户之后移动到随机位置。游戏设置为循环,但一旦出现获胜者,它就会重置,并且不会显示“你赢/输的横幅”。
我试图在没有人工智能的情况下实现井字棋游戏。不知怎的,我的点击功能会自动触发。您能帮我理解为什么点击功能会自动触发吗?这是 HTML 代码片段。 Tic Tac Toe Gam
我正在制作一个井字游戏程序。我计划将 minimax 与它一起使用。我制作了一棵树,其中包含所有可能的游戏序列的空间,并且我正在寻找一种方法来填充它。我目前有这种类型: typedef struct
我正在尝试遵循本教程: https://www.youtube.com/watch?v=Db3cC5iPrOM 2:59 我听不懂他在说什么。 我不明白为什么他在构造函数(public static
我在这里为我的java作业编写了井字棋游戏,一切都很好,除了一个小问题,即当您输入最后一步(第九回合)时,最后一个“X”不显示。这不仅很烦人,因为获胜的棋子没有显示,而且还导致了一些问题,即领带方法没
我对编码和 Java 比较陌生,在我的 CS-173 类(class)中,我的任务是创建一个 Tic Tac Toe 游戏。然而,当谈到创建确定获胜者的方法时,每当我获得“胜利”时,代码都不会运行说我
您好,我想尝试制作一个井字游戏,但遇到问题。我仍然是一个初学者,所以请随意提供有关组织和类似内容的提示,但我的问题是我的方法 checkRowWin、checkColoumnWin 和 E.T.C 添
我正在研究 Tic-Tac-Toe 游戏 (3x3) 的 alpha-beta 剪枝算法。目前,对于任何给定的 3x3 网格实例,我都能找出最好的情况: public Best chooseAlpha
我是一名初学者,正在学习 Java super 技能类(class)。我试图尝试 this VS Code 中的 tic tac toe 游戏项目。效果很好。但代码在提交时出错。 代码: packag
我已经研究“死代码”和“无法访问的代码”有一段时间了,但我似乎仍然无法弄清楚我的程序中这个问题是怎么回事。这是我所拥有的一个片段; “gameEnd()”方法检查 Tic Tac Toe 中的获胜者:
我目前正在做一项任务,即创建一个 Tic Tac Toe 游戏。我已经做到了玩家可以在棋盘上放置标记、绘制标记并随后切换回合。但是,只有当玩家将其标记放在左上角(第一个)字段时,我检查是否存在获胜条件
编辑:我注意到,当您为 TicTacToe 表输入错误的数字时,我的程序会输出“无效移动”。什么会导致这种情况呢?我只使用 move(row, col) 方法一次,因此它不会重复无效输入两次。 我一直
import java.util.Scanner; public class TTT{ public static int row, col; public static Scanner scan =
这个问题已经有答案了: Is Java "pass-by-reference" or "pass-by-value"? (91 个回答) 已关闭 7 年前。 我的井字棋程序有一个小问题。我有一个嵌套计
我正在用 python 开发一个 tic-tac-toe 程序。现在,轮到人类了,一切顺利。然而,AI 在玩完第一个回合后,不会再玩任何后续回合。我扫描了代码,似乎找不到任何可能导致此问题的错误。 请
function checkWin(){ if (arro[0] === arro[1] === arro[2] === 1 || arro[3] === arro[4] === arro[5] ==
我尝试更改innerHTML 的所有内容都没有改变任何内容。没有 X 或 O,并且不会显示当前玩家的姓名。我一直在试图解决这个问题。我一直在寻找答案,据我所知,我所做的一切都是我应该做的。我今晚必须交
我是一名优秀的程序员,十分优秀!