gpt4 book ai didi

javascript - 如何在Javascript依赖选项中添加更多选项?

转载 作者:行者123 更新时间:2023-11-28 02:57:45 24 4
gpt4 key购买 nike

我想在此文件中添加更多下拉选项:

http://parseven.com/java_ex.html

现在有两个,我想再做三个。第三个选项必须依赖于第二个选项,依此类推。请建议我。提前致谢。

最佳答案

数据从哪里来?我不确定您最需要答案的哪一部分:

  1. 您需要向第一个下拉列表的 OnChange 事件添加一个事件处理程序。
  2. 在事件处理程序中,您需要从某个地方获取数据(AJAX?)
  3. 然后您需要获取新数据和 add it to the second dropdown .

这基本上是您要做的事情:

document.getElementById('dropdown1').onchange = yourFunction;

function yourFunction() {
//Here is where you need to get the data

//Then you need to add them to the other dropdown like this:
var dropdown2 = document.getElementById('dropdown2');

var optn = document.createElement("OPTION");
optn.text = text;
optn.value = value;
dropdown2.options.add(optn);
}

关于javascript - 如何在Javascript依赖选项中添加更多选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2168635/

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