JS 初学者/学习者的简单问题。
如何获取下拉选择中的数字值并根据所选值创建元素输入文本框?
我有一个带有数字值的选择选项,我想在选项中选择数字时创建多个文本框。
例如:在下拉列表中我选择8,因此需要输出8个文本框。
我的代码如下:
<select class="form-control" id="textboxes">
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
<option>12</option>
</select>
var textboxNumbers = document.getElementById("textboxes").value;
var i;
for(i=0; i<textboxNumbers; i++){
var yourTextboxes = document.createElement("INPUT");
yourTextboxes.setAttribute("type", "text");
document.getElementById("balls").appendChild(yourTextboxes);
}
潇湘沐
慕尼黑8549860
弑天下
相关分类