Simple question: I want to loop the array values in two dropdown lists in HTML using JavaScript. But only one dropdown is working. If I comment the one, the another one works. I want to fill the values in both the dropdown lists. What's wrong in this simple code?
简单的问题:我想使用JavaScript在HTML中的两个下拉列表中循环数组值。但只有一个下拉列表正在运行。如果我评论一个,另一个工作。我想填写下拉列表中的值。这个简单的代码有什么问题?
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
select2.appendChild(el);
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
6 个解决方案
#1
20
Do not use the same element for both controls. Clone it first
不要对两个控件使用相同的元素。首先克隆它
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
select2.appendChild(el.cloneNode(true));
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
#2
10
Create a option element for each select,appendChild doesn't clone the element so the second append takes the element from the first
为每个select创建一个option元素,appendChild不克隆元素,所以第二个append从第一个元素中获取元素
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
var el1 = document.createElement("option");
el1.textContent = opt;
el1.value = opt;
select.appendChild(el1);
select2.appendChild(el);
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
#3
8
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for(var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
var el2 = document.createElement("option");
el2.textContent = opt;
el2.value = opt;
select2.appendChild(el2);
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
Create two different nodes and add them.
创建两个不同的节点并添加它们。
Reason to why your code didn't work is here
您的代码无效的原因在这里
Hope this helps :)
希望这可以帮助 :)
#4
5
You can use both JavaScript and jQuery:
您可以使用JavaScript和jQuery:
var options = ["1", "2", "3", "4", "5"];
$.each(options, function(key, value) {
$('#selectNumber,#selectNumber2').append($("<option/>", {
value: key,
text: value
}));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="selectNumber">
<option>Choose a number1</option>
</select>
<select id="selectNumber2">
<option>Choose a number2</option>
</select>
This is JavaScript code:
这是JavaScript代码:
<script>
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
select2.appendChild(el.cloneNode(true));
}
});
</script>
This is other option if you want separate the option code
如果您想要单独选项代码,这是另一种选择
<script>
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
var e2 = document.createElement("option");
e2.textContent = opt;
e2.value = opt;
select2.appendChild(e2);
}
</script>
#5
4
Here is the method without clone (jsFiddle):
这是没有克隆的方法(jsFiddle):
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
select.add(new Option(opt,opt));
select2.add(new Option(opt,opt));
}
Read more about the add
function for JavaScript select here.
在此处阅读有关JavaScript的添加功能的更多信息。
#6
3
The issue is the element you are creating can only be append in one parent. Not both. Bellow the code snippet that works
问题是您创建的元素只能附加在一个父元素中。不是都。咆哮有效的代码片段
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
var copy = el.cloneNode(true);
select2.appendChild(copy);
}
Just notice the line var copy = el.cloneNode(true);
this create a new clone of the element, and then append it to another select
.
只需注意行var copy = el.cloneNode(true);这将创建元素的新克隆,然后将其附加到另一个选择。
#1
20
Do not use the same element for both controls. Clone it first
不要对两个控件使用相同的元素。首先克隆它
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
select2.appendChild(el.cloneNode(true));
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
#2
10
Create a option element for each select,appendChild doesn't clone the element so the second append takes the element from the first
为每个select创建一个option元素,appendChild不克隆元素,所以第二个append从第一个元素中获取元素
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
var el1 = document.createElement("option");
el1.textContent = opt;
el1.value = opt;
select.appendChild(el1);
select2.appendChild(el);
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
#3
8
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for(var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
var el2 = document.createElement("option");
el2.textContent = opt;
el2.value = opt;
select2.appendChild(el2);
}
<select id="selectNumber">
<option>Choose a number</option>
</select>
<select id="selectNumber2">
<option>Choose a number</option>
</select>
Create two different nodes and add them.
创建两个不同的节点并添加它们。
Reason to why your code didn't work is here
您的代码无效的原因在这里
Hope this helps :)
希望这可以帮助 :)
#4
5
You can use both JavaScript and jQuery:
您可以使用JavaScript和jQuery:
var options = ["1", "2", "3", "4", "5"];
$.each(options, function(key, value) {
$('#selectNumber,#selectNumber2').append($("<option/>", {
value: key,
text: value
}));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="selectNumber">
<option>Choose a number1</option>
</select>
<select id="selectNumber2">
<option>Choose a number2</option>
</select>
This is JavaScript code:
这是JavaScript代码:
<script>
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
select2.appendChild(el.cloneNode(true));
}
});
</script>
This is other option if you want separate the option code
如果您想要单独选项代码,这是另一种选择
<script>
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
var e2 = document.createElement("option");
e2.textContent = opt;
e2.value = opt;
select2.appendChild(e2);
}
</script>
#5
4
Here is the method without clone (jsFiddle):
这是没有克隆的方法(jsFiddle):
var select = document.getElementById("selectNumber");
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
select.add(new Option(opt,opt));
select2.add(new Option(opt,opt));
}
Read more about the add
function for JavaScript select here.
在此处阅读有关JavaScript的添加功能的更多信息。
#6
3
The issue is the element you are creating can only be append in one parent. Not both. Bellow the code snippet that works
问题是您创建的元素只能附加在一个父元素中。不是都。咆哮有效的代码片段
var select2 = document.getElementById("selectNumber2");
var options = ["1", "2", "3", "4", "5"];
for (var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
var copy = el.cloneNode(true);
select2.appendChild(copy);
}
Just notice the line var copy = el.cloneNode(true);
this create a new clone of the element, and then append it to another select
.
只需注意行var copy = el.cloneNode(true);这将创建元素的新克隆,然后将其附加到另一个选择。