我有一个 JSON 对象,其中包含类别和相应的子类别。我有两个下拉列表(作为表格的一行),第一个下拉列表包含类别列表。选择特定类别时,第二个下拉列表将填充子-所选类别的类别。我已经做到了,并且工作正常。
现在,我需要动态添加行。添加行功能也可以正常工作。
但我无法在动态添加的行中建立下拉菜单之间的关系。
我知道原因 - 我无法将 id 分配给动态创建的下拉列表,因此无法在它们之间建立任何关系。
请建议如何建立所需的关系。
<INPUT type="button" value="Add Row" onclick="addRow('dataTable')" />
<form id="myForm">
<TABLE id="dataTable" >
<TR><TD>
<select id="selectCategory" onchange="GetSelectedItem()">
<option>Choose a category</option>
</select>
</TD>
<TD>
<select id="selectSubCategory" >
<option>Choose a sub-category</option>
</select>
</TD></TR>
</TABLE>
</form>
脚本:
<script><!--
var jsonObj={"category1":["subcat 1"],"category2":["subcat 2.1","subcat 2.2"],"category3":["subcat 3.1","subcat 3.2","subcat 3.3"]};
var keys= Object.keys(jsonObj);
var category_dropdown = document.getElementById("selectCategory");
for (var keys in jsonObj) {
category_dropdown[category_dropdown.length] = new Option(keys,keys);
}
function GetSelectedItem() {
var e = document.getElementById("selectCategory");
var selectedCategory = e.options[e.selectedIndex].value;
var sub_category_dropdown = document.getElementById("selectSubCategory");
document.getElementById("selectSubCategory").options.length=0; //clearing previous values of the drop-down list
for(var i=0;i<jsonObj[selectedCategory].length;i++) {
sub_category_dropdown[sub_category_dropdown.length] = new Option(jsonObj[selectedCategory][i],jsonObj[selectedCategory][i]);
}
}
function addRow(tableID)
{
var table = document.getElementById(tableID);
var rowCount = table.rows.length;
var row = table.insertRow(rowCount);
var colCount = table.rows[0].cells.length;
for(var i=0; i<colCount; i++) {
var newcell = row.insertCell(i);
newcell.innerHTML = table.rows[0].cells[i].innerHTML;
newcell.childNodes[0].selectedIndex = 0;
}
}
//--></script>