如何通过 ID 将输入的值传递给 javascript

How can i pass the value of my input to javascript through ID

所以这是我在 HTML 中的代码:

<div><label> Control Number </label>
  <input name="get_control_num" style="text-transform:uppercase"
    class="form-control" id="sel_control_num" readonly>
</div>
<div class="form-group">
  <label> Quantity </label>
  <input class="form-control" name="quantity" type="number"
    onchange="addInputs(this)" />
  <br>
  <button type="button" class="btn btn-primary"> Add Control Number </button>
</div>
<div class="form-group" id="parent"></div>

这是我在 Javascript 中使用 setAttribute

的代码
function addInputs(pass) {
  var n = pass.value && parseInt(pass.value, 10);
  if (isNaN(n)) {
    return;
  }
  var input;
  var getCurrdata = document.getElementById("sel_control_num");
  var parent = document.getElementById("parent");
  functionPopulate(parent);
  for (var i = 0; i < n; i++) {
    input = document.createElement('input');
    input.setAttribute('placeholder', 'Control No.')
    input.setAttribute('type', 'text');
    input.setAttribute('class', 'onInput');
    input.setAttribute('name', 'get_Input_show');
    input.setAttribute('value', '*suppose to be value of ID #select_control_num*');
    document.getElementById("parent").style.padding = "5px 0px 0px 0px";
    parent.appendChild(input);
  }
}

function functionPopulate(div) {
  div.innerHTML = '';
}

我如何在我的 HTML 中传递 ID(#sel_control_num) 内部的值,以便如果我根据我放入的数量添加,它应该显示该 ID 的数据。我想不出合适的解决方案,因为我是 javascript 的新手。感谢您的帮助。

input.setAttribute('value', document.getElementById('sel_control_num').value);

请注意,您发布的 HTML 中的 <input> 的 ID 为 sel_control_num 而不是您在问题中所写的 select_control_num

你可以这样做:

input.setAttribute('value', document.getElementById('select_control_num').value);

https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById

另一个解决方案是

input.setAttribute('value', document.querySelector('#select_control_num').value);

https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector

另请注意,您要求从 ID 为 select_control_num 的元素中获取值,但我在您的 html 中只看到一个 ID 为 sel_control_num 的元素,因此请确保那些匹配。