gpt4 book ai didi

javascript - 如何使用 Javascript/jQuery 设置下拉菜单的选项?

转载 作者:行者123 更新时间:2023-12-03 21:46:46 24 4
gpt4 key购买 nike

有谁知道如何使用 javascript 或 jquery 设置下拉菜单的选项和值?我正在使用这个 HTML:

<select size="1" id="D1">
</select>

感谢您的帮助。

最佳答案

你甚至不一定需要 jQuery:

var select = document.getElementById("D1"),
opt = document.createElement("option");
opt.value = "value";
opt.textContent = "text to be displayed";
select.appendChild(opt);

Example .

但这里无论如何都是用 jQuery 的:

$("select#D1").append( $("<option>")
.val("value")
.html("text to be displayed")
);

Example .

关于javascript - 如何使用 Javascript/jQuery 设置下拉菜单的选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8661287/

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