将新值附加到选项中选择最后一个值

时间:2019-02-06 10:25:58

标签: javascript jquery ajax

我正在尝试在选项选择框的末尾附加新值。该数字应继续而不是从1开始。

var n_standard = 1;

function removeStandard() {
  var select = document.getElementById('selectBoxStandard');
  for (var i = Number($("#selectBoxStandard").val()); i <= n_standard; i++){
    var opt = document.createElement('option');
    opt.value = i;
    opt.innerHTML = i;
    select.appendChild(opt);
  }
}
<label for="rooms" style="color:black">No. of rooms: </label>
<select required tabindex="10" id="selectBoxStandard" name="n_rooms">
  <option value="0">0</option>
  <option value="1">1</option>
  <option value="2">2</option>
  <option value="3">3</option>
  <option value="4">4</option>
  <option value="5">5</option>
  <option value="6">6</option>
</select>

此javascript代码将根据 n_standard 的值填充option的值,它应继续编号而不是从1开始。

程序输出

   option
    0
    1
    2
    3
    4
    5
    6
    1

预期产量

option
0
1
2
3
4
5
6
7
8

3 个答案:

答案 0 :(得分:1)

您可以查询fun giveNullableInt(): Int? { return giveString().toIntOrNull() } 当前有多少option个并将其添加为偏移量:

select

var offset = select.find("option").length;
opt.value = i + offset;
var n_standard = 1;

function removeStandard() {
  var select = $('#selectBoxStandard');
  var offset = select.find("option").length;

  // not clear why you would start at 5 and check 5<=1 which will always give nothing
  // so for demo, always adds one item (so doesn't need the loop)
  // change n_standard to add more than one at a time
  //for (var i = Number(select.val()); i <= n_standard; i++) {

  for (var i = 0; i < n_standard; ++i) {
    var opt = document.createElement('option');
    opt.value = i + offset;
    opt.innerHTML = i + offset;
    select.get(0).appendChild(opt);
  }
}

$("#b").click(removeStandard);

或者,如果可能存在间隙,可以将起始值设置为最大值。

答案 1 :(得分:1)

在代码中使用select.length以获取<option><select>的数量。  https://www.w3schools.com/jsref/prop_select_length.asp

var n_standard = 1;
function removeStandard(){
 var select = document.getElementById('selectBoxStandard');
  for (var i = Number($("#selectBoxStandard").val()); i< n_standard; i++){
    var opt = document.createElement('option');
    opt.value = select.length;
    opt.innerHTML = select.length;
    select.appendChild(opt);
  }
}

removeStandard();

答案 2 :(得分:0)

不清楚您要做什么。但是,如果您尝试通过该for循环来增加选项,请尝试以下操作:

var n_standard = 9;
var select = document.getElementById('selectBoxStandard');
for (var i = Number(select.value); i <= n_standard; i++) {
            var opt = document.createElement('option');
            opt.value = i;
            opt.innerHTML = i;
            select.appendChild(opt);}

这将动态添加基于 n_standar 增值的选项。