gpt4 book ai didi

jquery - 如何使用 jQueryeach() 循环填充下拉菜单

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

我想要像这样完全相同:

window.onload = function populateDropdown(){
console.log('Hallo i bims, ein Method')
for(var i = 0; i < 100; i++){
var select = document.getElementById('age');
select.options[select.options.length] = new Option(i, i);
}
};

在 jQuery 中..我已经用 $.each() 尝试过,但我不明白如何执行该步骤:

(;i < 99; i++)

你能给我一些提示吗?

最佳答案

你可以这样做。在每次迭代中,我们都会创建一个新的 option 元素,并将其 textvalue 设置为 i。然后我们使用 .appendChild() 将其附加到 select 中。

window.onload = function populateDropdown(){
var select = document.getElementById('age');

for (var i = 0; i < 100; i++) {
var option = document.createElement("option");
option.text = i;
option.value = i;
select.appendChild(option);
}
};
<select id="age"></select>

关于jquery - 如何使用 jQueryeach() 循环填充下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44918665/

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