gpt4 book ai didi

Javascript - 指定数组中的所有其他索引元素(除了被调用的元素之外)

转载 作者:行者123 更新时间:2023-12-01 02:22:34 25 4
gpt4 key购买 nike

我想要实现的目标是以某种方式将数组中的所有索引值(除了调用的值)组合在一起。为了澄清这一点,我编写了以下代码。

第一个 document.write 按预期工作并打印与按下的按钮相关的索引字符串。对于第二个 document.write,我想打印除已单击/选择的元素之外的所有其他索引元素。如何将所有其他索引元素组合在一起?不用说,对于所有 Javascript 专家来说,代码中的 myarray[!clicked]) 尝试是行不通的。

<html>

<body>
<script>
var myarray = ["button1", "button2", "button3"];
function pushed(clicked) {

for (var i=0; i<myarray.length; i++) {

document.write("the button that has been pushed is" + myarray[clicked]);
document.write("the buttons that have not been pushed are" + myarray[!clicked]);
}
}
</script>

<button onclick="pushed(0)"> Button 1 </button>
<button onclick="pushed(1)"> Button 2 </button>
<button onclick="pushed(2)"> Button 3 </button>

</body>
</html>

最佳答案

您应该打印您单击的按钮,然后打印您关于未单击按钮的句子。然后,您可以使用单击的索引和条件将其从您正在打印的其他打印中排除。

document.write("the button that has been pushed is" + myarray[clicked]);
document.write("the buttons that have not been pushed are: ");

for (var i = 0; i < myarray.length; i++) {
if (i !== clicked) {
document.write(myarray[i]);
}
}

关于Javascript - 指定数组中的所有其他索引元素(除了被调用的元素之外),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49096993/

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