gpt4 book ai didi

javascript - 生成下拉列表

转载 作者:行者123 更新时间:2023-11-28 11:42:33 25 4
gpt4 key购买 nike

我有一个 href 列表,我想从中创建一个下拉列表。

如何在不使用 jQuery 的情况下完成此任务?

我是 JavaScript 新手...

最佳答案

var select = document.createElement("select");
for (var i=0; i<hrefs.length; i++) {
var link = hrefs[i];
var option = document.createElement("option");
option.value = hrefs[i];
option.innerHTML = i + ": " + hrefs[i]; // this is the label
select.appendChild(option);
}
document.body.appendChild(select);

我不确定标签是否正确;这取决于您对 href 列表的含义以及您想要对标签执行的操作。我假设您有一系列链接,例如 ["http://google.com ", ...]。

关于javascript - 生成下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1666500/

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