gpt4 book ai didi

javascript - 推送在 javascript 中无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 13:45:59 25 4
gpt4 key购买 nike

我正在做一个简单的项目,用户可以将项目插入或弹出到数组中。我的问题是,当他们插入一个项目并尝试插入另一个项目时,它不会将其添加到列表中,它只是替换他们添加到数组中的最后一个值。

window.onload = function menu(){
var array = ["cat", "dog"];
var selection = prompt("Please use this menu, and type 1 to push an item on the array, 2 to pop an item off the array, and 3 to exit the menu.");

if (selection == '1'){
var push = prompt("What item would you like to push onto the array?");
while (push != null) {
array.push(push);
document.getElementById("pushed").innerHTML = array.toString();
menu();
}}

然后在下面我有一个 HTML 页面,但这里是它显示的地方:

<div id = "pushed"></div>

最佳答案

menu() 函数在每次调用时都会重新定义数组,而不是在其范围之外修改数组。

var array = ['cat', 'dog']; 行移到顶部以解决这个紧迫的问题。

var array = ["cat", "dog"];

function menu(){
var selection = prompt("Please use this menu, and type 1 to push an item on the array, 2 to pop an item off the array, and 3 to exit the menu.");
if (selection == '1'){
var push = prompt("What item would you like to push onto the array?");
while (push != null) {
array.push(push);
document.getElementById("pushed").innerHTML = array.toString();
menu();
}
}
}
window.onload = menu;

引用资料

JS Scope

onload usage

关于javascript - 推送在 javascript 中无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35420716/

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