我有这个代码:
function addFormControls() {
var e = document.getElementById("ProductsList");
var prodid = e.options[e.selectedIndex].value;
var prodvalue = e.options[e.selectedIndex].text;
if (num == 0) {
document.getElementById("ProductsPanel").innerHTML = '<h3>Products added to Variant</h3>';
}
if (num < 10) {
var boolCheck = checkArrayData(prodid);
if (boolCheck == false) {
document.getElementById("ProductsPanel").innerHTML = document.getElementById("ProductsPanel").innerHTML + prodvalue + '<input type="text" id="' + prodid + 'product" value="0" width="50px" maxlenght="2" /><input type="button" onclick="updateArrayData(\'' + prodid + '\', document.getElementById(\'' + prodid + 'product\').value);" value="Update Number" /><br />';
num++;
prodIdArray.push({
'key': prodid,
'value': prodvalue,
'num': 0
});
document.getElementById("productsArray").value = prodIdArray;
} else {
alert("Sorry product has already been added!");
}
}
}
它很高兴地用新信息更新了一个 div 标签,但是如果你查看它在屏幕上打印一个文本框的部分,第 13 行,这些文本框将由用户更新。
所以简而言之,添加了文本框,并更新了值。
但是,如果有一个值为 5 的文本框,则再次调用此函数以添加另一个文本框,之前文本框的值将被清除干净!
那么,我该如何防止这种情况,我是否必须做一些,for循环遍历div控件获取值,然后在调用此函数后将它们放回去?!?