- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
https://jsfiddle.net/mpcbLgtt/2/
我正在做的事情:一个函数,当点击类card的div时,它应该将其名称添加到名为deck的数组中,并将其id添加到名为cardIds的数组中。
这是卡片:
<div class='card' id='1' name='dinosaur'>Dinosaur</div>
<div class='card' id='2' name='crab'>Crab</div>
如果阵列中已经有 2 张这张卡,那么它应该不执行任何操作。
如果没有任何卡牌,则会将一个牌组项 div append 到牌组列表 div 上。
<div class="decklist"></div>
问题就在这里。如果数组中已经有 1 张卡,我不想将卡 append 到“decklist”div,而是删除上一张卡并添加一张带有“x2”的新卡。
目前的代码可以删除之前的卡片。但是,当它 append 以下代码时,它会执行两次。例如。我单击一张名为“恐龙”的卡片,它会将其 append 到数组中。然后,如果我再次单击“恐龙”卡,它将输出“恐龙 x2”“恐龙 x2”,而不仅仅是“恐龙 x2”
$(".decklist").append($replacement);
完整代码如下。
var deck = [];
var cardIds = [];
$(".card").click(function(){
$cardName = $(this).attr("name");
$cardId = $(this).attr("id");
$occurances = 0;
for (var i = 0; i<deck.length; i++) {
if (deck[i]==$cardName) {
$occurances++;
}
}
//if there are less than 2 of this card in deck array
if ($occurances<2) {
//add the card to array
deck.push($cardName);
cardIds.push($cardId);
deck.sort();
//empty the decklist div
$(".decklist").empty();
//go through all the cards in the deck array.
//if that card appears once append it else replace it
for (var i = 0; i < deck.length; i++) {
//count the number of times this card is in the deck array
$count = 0;
for (var k = 0; k < deck.length; k++) {
if (deck[k] == deck[i]) {
$count++;
}
}
if ($count == 1) {
//this runs once
var $toBeAppended = $("<div class='deckItem' id='"+cardIds[i]+"'>"+deck[i]+"</div>");
$(".decklist").append($toBeAppended);
} else {
//this runs twice
var $replacement = $("<div class='deckItem' id='"+cardIds[i]+"'>"+deck[i]+" x2</div>");
$(".decklist").remove(".deckItem#"+cardIds[i]);
$(".decklist").append($replacement);
}
}
}
最佳答案
你实际上有很多问题。
card
前缀,并对顶部的卡片进行了唯一编号 1-3
。代码:
$(document).ready(function() {
var deck = [];
var cardIds = [];
$(".card").click(function() {
$cardName = $(this).attr("name");
$cardId = $(this).attr("id");
$occurances = 0;
for (var i = 0; i < deck.length; i++) {
if (deck[i] == $cardName) {
$occurances++;
}
}
//if there are less than 2 of this card in deck array
if ($occurances < 2) {
//add the card to array
deck.push($cardName);
cardIds.push($cardId);
deck.sort();
console.log(deck);
//empty the decklist div
$(".decklist").empty();
//go through all the cards in the deck array.
//if that card appears once append it else replace it
alert(deck.length);
for (var i = 0; i < deck.length; i++) {
//count the number of times this card is in the deck array
$count = 1;
for (var k = i + 1; k < deck.length; k++) {
if (deck[k] == deck[i]) {
$count++;
i++; // Skip the item just matched as well
}
}
alert($count);
if ($count == 1) {
//this runs once
var $toBeAppended = $("<div class='deckItem' id='card" + cardIds[i] + "'>" + deck[i] + "</div>");
$(".decklist").append($toBeAppended);
} else if ($count == 2) {
//this runs twice
var $replacement = $("<div class='deckItem' id='" + cardIds[i] + "'>" + deck[i] + " x2</div>");
$(".decklist").remove(".deckItem#" + cardIds[i]);
$(".decklist").append($replacement);
}
}
}
});
});
关于javascript - Else 语句运行两次 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34879724/
这个问题在这里已经有了答案: Does an else if statement exist? (2 个答案) 关闭 4 年前。 相信大家在学习C的时候,都学过这样的语法: if (conditio
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
Java 11.6 在这个 BMI 计算器中,它将输入人的体重、高度并计算 BMI。 BMI 计算正确,但是在分类 BMI 方法中,程序会跳过 if 和 else if 检查,只打印出每次测试的“肥胖
我有以下代码,它根据 url 参数更改,然后隐藏表单上的选择选项。即 www.example.com?type=images 最终会有 20 多个不同的参数。我想知道比拥有大量 if else 更好的
在WikiPedia Binary Search 的文章中有一个名为Deferred detection of equality 的部分,其中介绍了二进制搜索的某种“优化”版本,如下所示: int b
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我在下面的代码中遇到错误。尝试了 if 和 elseif 的所有组合,但无法使其工作。 错误:未捕获的语法错误:意外的标记其他 if(disableAd == 0 && disableWeather
我是 Java 初学者,我正在做一些练习题来提高我的 Java 技能。 编写一个名为 season 的方法,该方法接受两个整数作为代表月份和日期的参数,并返回一个指示该月份和日期的季节的字符串。假设月
有没有可能在 JavaScript 中做这样的事情? if (name == 'foo') { exampleFunction('some_arg'); } else if (name ==
我有一段简单的代码来检查一些条件,我希望每个条件都产生一个唯一的输出,但如果没有满足条件,则产生另一个唯一的输出。 有什么方法可以创建仅在所有先前的 if 语句都失败时才触发的 else 吗?我知道下
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 8 年前。 Improv
我发现自己经常使用这样的模式: if (a > b) { foo(); } elseif (c > d) { bar(); } else { baz(); } 这里的要点是第二
Hive 使用 IF(条件,表达式,表达式),所以当我想做 if/else if/else if/else 时,我必须这样做: IF(a, 1, IF(b, 2, IF(c, 3, 4))) 有没有更
直到 if 和 else 具有共同的作用域: if (int x = foo()) { // .... } else if (int x = bar()) { // ... } else {
是否可以保证 if-else if-else if-else block 中的 ifs 会按照编写顺序进行测试。 我问这个是因为我经常尝试通过将最常见的情况放在首位来优化我的代码,我想知道编译器所做的
我有一个方法可以检查某些事情并根据这些检查返回一个 bool 值。它涉及一个单独的分支 If 部分,该部分按顺序检查大约 5 个条件。如果这些条件中的任何一个返回真,则该方法将返回真;。如果没有任何条
这个问题在这里已经有了答案: Yet Another Conditional Operator Nesting Question (2 个回答) Why is the conditional oper
有没有一种方法可以从一个事件运行多个 if else 语句?例如,尝试运行此命令,但它仅对类为“two”的元素执行第一个 if else,而不是对类为“三”的第二个元素执行。 $(".hamburge
我有一个类似这样的查询: SELECT SUM(`table`.points) AS total_points FROM table 这将返回类似这样的内容 | **points** |
我正在尝试对单选按钮组运行“存在检查”,以确定如果在组中选择了 2 个单选按钮中的 1 个(if 语句),如果选择了 2 个单选按钮中的另一个(否则 if语句)或者如果两者都没有选择(else 语句)
我是一名优秀的程序员,十分优秀!