- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个 Web 应用程序国际象棋游戏,所以每个棋子都会有一个事件监听器,等待玩家点击它。当玩家点击一个棋子时(现在我只使用 pawns)它的 id 将被保存并打印出来,只有在此之后所有方块才应该等待点击(我不使用有效方块,可以是任何正方形);如果点击一个方块,它的 id 应该被保存并打印出来。
但是在控制台上,当我单击一个 pawn 时,它的 id 会打印两次,一次用于正常打印,另一次用于方形打印(所以它采用了方形打印)。因此,不是程序等待调用在单击块后打印方块 id 的函数,而是程序在方块 id 的位置打印块 id。所以我认为程序不会等到第一个函数完成:
//Each div(square) of chess board
var $class_white = [...document.querySelectorAll('.house_white')];
var $class_black = [...document.querySelectorAll('.house_black')];
//Every pawn
var $class_pawn = [...document.querySelectorAll('.pawn')];
//Variables to store the piece and square id.
var $piece;
var $square;
//Every pawn is waiting to be clicked
function $$wait_pawns(item) {
item.addEventListener('click', $$pawn_clicked);
}
//This will add the event listener type 'click' to the squares
function $$prepare_squares(){
$class_white.forEach($$wait_squares);
$class_black.forEach($$wait_squares);
}
//If a pawn is clicked, it will save the pawn id and then call $$prepare_squares() to add an event listener type 'click' to the squares
function $$pawn_clicked(event) {
$piece = event.target.id;
console.log($piece);
$$prepare_squares();
}
//Now every square is wainting to be clicked
function $$wait_squares(item){
item.addEventListener('click', $$square_clicked);
}
//After a square is clicked, it's id will be saved and will be printed.
function $$square_clicked(event2){
$square = event2.target.id;
console.log($square);
}
//This will add an event listener type 'click' to all pawns
$class_pawn.forEach($$wait_pawns);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/*background-color: rgb(0,0,80);*/
background-image: url("black.png");
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}
.pawn{
height:50px;
width:50px;
}
.bishop{
height:50px;
width:50px;
}
.rock{
height:50px;
width:50px;
}
.horse{
height:50px;
width:50px;
}
#king{
height:50px;
width:50px;
}
#queen{
height:60px;
width:60px;
}
.container {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(8, 1fr);
width: 600px;
height: 600px;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
/*border-bottom: 9px solid rgb(0,0,0);
border-left: 9px solid rgb(0,0,0);
border-top: 9px solid rgb(0,0,0);
border-right: 9px solid rgb(0,0,0);*/
}
.house_white {
display: flex;
background-color: rgb(250,250,250);
align-items: center;
justify-content: center;
}
.house_black {
display: flex;
background: rgb(0,100,0);
align-items: center;
justify-content: center;
}
#demo {
padding-bottom: 2px;
height:50px;
width:220px;
display: flex;
justify-content: center;
align-items: center;
color: rgb(255,255,255);
position: absolute;
top: 30%;
left: 90%;
transform: translate(-50%,-50%);
border-radius: 8px;
font-family: Arial, sans-serif, serif;
font-size: 1.30rem;
border-bottom: 2px solid rgb(200,200,200);
}
#start {
height:50px;
width:200px;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(0,0,0);
color: rgb(255,255,255);
position: absolute;
top: 60%;
left: 90%;
transform: translate(-50%,-50%);
border-radius: 8px;
font-family: Arial, sans-serif, serif;
font-size: 1.30rem;
outline: none;
}
#start:hover {
background-color: rgb(255,255,255);
color: rgb(0,0,0);
}
#circle {
height:30px;
width:30px;
}
#queen {
height:40px;
width:40px;
}
/*#joke {
height:300px;
width:300px;
position: absolute;
top: 40%;
left: 15%;
transform: translate(-50%,-50%);
border-radius: 8px;
border: 6px solid;
border-color: rgb(0,0,0);
}*/
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="description" content="Dynamic, light, fast and simple">
<meta name="author" content="necromancerc-137">
<meta name="keywords" content="dynamic">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Javascript testing</title>
</head>
<body>
<main>
<!--<img id="joke" src="joke.gif">-->
<div id="demo">Frontend...</div>
<button id="start">Help!</button>
<div class="container">
<div id = "a8" class="house_white"></div>
<div id = "b8" class="house_black"></div>
<div id = "c8" class="house_white"></div>
<div id = "d8" class="house_black"></div>
<div id = "e8" class="house_white"></div>
<div id = "f8" class="house_black"></div>
<div id = "g8" class="house_white"></div>
<div id = "h8" class="house_black"></div>
<div id = "a7" class="house_black"></div>
<div id = "b7" class="house_white"></div>
<div id = "c7" class="house_black"></div>
<div id = "d7" class="house_white"></div>
<div id = "e7" class="house_black"></div>
<div id = "f7" class="house_white"></div>
<div id = "g7" class="house_black"></div>
<div id = "h7" class="house_white"></div>
<div id = "a6" class="house_white"></div>
<div id = "b6" class="house_black"></div>
<div id = "c6" class="house_white"></div>
<div id = "d6" class="house_black"></div>
<div id = "e6" class="house_white"></div>
<div id = "f6" class="house_black"></div>
<div id = "g6" class="house_white"></div>
<div id = "h6" class="house_black"></div>
<div id = "a5" class="house_black"></div>
<div id = "b5" class="house_white"></div>
<div id = "c5" class="house_black"></div>
<div id = "d5" class="house_white"></div>
<div id = "e5" class="house_black"></div>
<div id = "f5" class="house_white"></div>
<div id = "g5" class="house_black"></div>
<div id = "h5" class="house_white"></div>
<div id = "a4" class="house_white"></div>
<div id = "b4" class="house_black"></div>
<div id = "c4" class="house_white"></div>
<div id = "d4" class="house_black"></div>
<div id = "e4" class="house_white"></div>
<div id = "f4" class="house_black"></div>
<div id = "g4" class="house_white"></div>
<div id = "h4" class="house_black"></div>
<div id = "a3" class="house_black"></div>
<div id = "b3" class="house_white"></div>
<div id = "c3" class="house_black"></div>
<div id = "d3" class="house_white"></div>
<div id = "e3" class="house_black"></div>
<div id = "f3" class="house_white"></div>
<div id = "g3" class="house_black"></div>
<div id = "h3" class="house_white"></div>
<div id = "a2" class="house_white"><img id="pawn0" class="pawn" src="pawn.png"></div>
<div id = "b2" class="house_black"><img id="pawn1" class="pawn" src="pawn.png"></div>
<div id = "c2" class="house_white"><img id="pawn2" class="pawn" src="pawn.png"></div>
<div id = "d2" class="house_black"><img id="pawn3" class="pawn" src="pawn.png"></div>
<div id = "e2" class="house_white"><img id="pawn4" class="pawn" src="pawn.png"></div>
<div id = "f2" class="house_black"><img id="pawn5" class="pawn" src="pawn.png"></div>
<div id = "g2" class="house_white"><img id="pawn6" class="pawn" src="pawn.png"></div>
<div id = "h2" class="house_black"><img id="pawn7" class="pawn" src="pawn.png"></div>
<div id = "a1" class="house_black"><img class="rock" src="rock.png"></div>
<div id = "b1" class="house_white"><img class="horse" src="horse.png"></div>
<div id = "c1" class="house_black"><img class="bishop" src="bishop.png"></div>
<div id = "d1" class="house_white"><img id="queen" src="queen.png"></div>
<div id = "e1" class="house_black"><img id="king" src="king.png"></div>
<div id = "f1" class="house_white"><img class="bishop" src="bishop.png"></div>
<div id = "g1" class="house_black"><img class="horse" src="horse.png"></div>
<div id = "h1" class="house_white"><img class="rock" src="rock.png"></div>
</div>
</main>
<script type="text/javascript" src="test.js"></script>
</body>
</html>
最佳答案
So I think the programm is not waiting until the first function is finished
async
JavaScript 函数
总是 运行至完成(除非整个环境终止,例如关闭网页)。
event.stopPropagation();
防止事件冒泡在 event
对象在 $$pawn_clicked
$piece
中已经有了它。多变的。所以你的方块点击处理程序应该只在 $piece
时做一些事情不是“无件”值(看起来您正在使用 undefined
)。关于javascript - 如何仅在浏览器 Javascript 上完成另一个功能后执行一个功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67532418/
从 Redis 获取消息时,onDone:(){print('done')} 从未起作用。 import 'package:dartis/dartis.dart' as redis show PubS
昨天我玩了一些vim脚本,并设法通过循环来对当前输入的内容进行状态栏预测(请参见屏幕截图(灰色+黄色栏))。 问题是,我不记得我是怎么得到的,也找不到我用于该vim魔术的代码片段(我记得它很简单):它
我尝试加载 bash_completion在我的 bash (3.2.25) 中,它不起作用。没有消息等。我在我的 .bashrc 中使用了以下内容 if [ -f ~/.bash_completio
我正在尝试构建一个 bash 完成例程,它将建议命令行标志和合适的标志值。例如在下面 fstcompose 命令我想比赛套路先建议 compose_filter= 标志,然后建议来自 [alt_seq
当我尝试在重定向符号后完成路径时,bash 完成的行为就好像它仍在尝试在重定向之前完成命令的参数一样。 例如: dpkg -l > /med标签 通过在 /med 之后点击 Tab我希望它完成通往 /
我的类中有几个 CAKeyframeAnimation 对象。 他们都以 self 为代表。 在我的animationDidStop函数中,我如何知道调用来自哪里? 是否有任何变量可以传递给 CAKe
我有一个带有 NSDateFormatter 的 NSTextField。格式化程序接受“mm/dd/yy”。 可以自动补全日期吗?因此,用户可以输入“mm”,格式化程序将完成当前月份和年份。 最佳答
有一个解决方案可以使用以下方法完成 NSTextField : - (NSArray *)control:(NSControl *)control textView:(NSTextView *)tex
我正在阅读 Passport 的文档,我注意到 serialize()和 deserialize() done()被调用而不被返回。 但是,当使用 passport.use() 设置新策略时在回调函数
在 ubuntu 11.10 上的 Firefox 8.0 中,尽管 img.complete 为 false,但仍会调用 onload 函数 draw。我设法用 setTimeout hack 解决
假设我有两个与两个并行执行的计算相对应的 future 。我如何等到第一个 future 准备好?理想情况下,我正在寻找类似于Python asyncio's wait且参数为return_when=
我正在寻找一种 Java 7 数据结构,其行为类似于 java.util.Queue,并且还具有“最终项目已被删除”的概念。 例如,应可以表达如下概念: while(!endingQueue.isFi
这是一个简单的问题。 if ($('.dataTablePageList')) { 我想做的是执行一个 if 语句,该语句表示如果具有 dataTablesPageList 类的对象也具有 menu
我用replaceWith批量替换了许多div中的html。替换后,我使用 jTruncate 来截断文本。然而它不起作用,因为在执行时,replaceWith 还没有完成。 我尝试了回调技巧 ( H
有没有办法调用 javascript 表单 submit() 函数或 JQuery $.submit() 函数并确保它完成提交过程?具体来说,在一个表单中,我试图在一个 IFrame 中提交一个表单。
我有以下方法: function animatePortfolio(fadeElement) { fadeElement.children('article').each(function(i
我刚刚开始使用 AndEngine, 我正在像这样移动 Sprite : if(pValueY < 0 && !jumping) { jumping =
我正在使用 asynctask 来执行冗长的操作,例如数据库读取。我想开始一个新 Activity 并在所有异步任务完成后呈现其内容。实现这一目标的最佳方法是什么? 我知道 onPostExecute
我有一个脚本需要命令名称和该命令的参数作为参数。 所以我想编写一个完成函数来完成命令的名称并完成该命令的参数。 所以我可以这样完成命令的名称 if [[ "$COMP_CWORD" == 1 ]];
我的应用程序有一个相当奇怪的行为。我在 BOOT_COMPLETE 之后启动我的应用程序,因此在我启动设备后它是可见的。 GUI 响应迅速,一切正常,直到我调用 finish(),按下按钮时,什么都没
我是一名优秀的程序员,十分优秀!