我有這個功能,產生了許多基於用戶的選擇輸入:如何從JS函數獲取動態值
// Number of inputs to create
var number = document.getElementById("cantidadArreglos").value;
// Container <div> where dynamic content will be placed
var container = document.getElementById("container");
// Clear previous contents of the container
while (container.hasChildNodes()) {
container.removeChild(container.lastChild);
}
for (i=0;i<number;i++){
// Append a node with a random text
container.appendChild(document.createTextNode("Arreglo #" + (i+1)));
// Create an <input> element, set its type and name attributes
var input = document.createElement("input");
input.type = "number";
input.name = "arreglo" + i;
container.appendChild(input);
// Append a line break
container.appendChild(document.createElement("br"));
}
}
而且它完美的作品。但是,我需要使用用戶在其他函數中引入的值。我如何正確地打電話給他們?
請創建一個[最小,完整,可驗證](https://stackoverflow.com/help/mcve)例子。你的代碼拋出錯誤。 – lumio
此代碼是從這裏的帖子中提取的,並生成我想要的輸入,所以我不明白你的意思是「拋出錯誤...」。我的問題很簡單:如何在另一個函數中調用/使用這些相同的輸入?我應該爲每個輸入創建一個ID嗎?然後什麼? – eduroc92
這是你發佈的所有代碼嗎? – lumio