这是我填充组合框的函数(它的 id 是 bc)
function fillComboBox() {
for(let i=0; i < SemanticTaskPropertySet.types.length; i++) {
let option = document.createElement("option");
option.innerHTML = SemanticTaskPropertySet.types[i].bc;
option.value = SemanticTaskPropertySet.types[i].bc_id;
bc.appendChild(option);
let option2 = document.createElement("option");
option2.innerHTML = SemanticTaskPropertySet.types[i].ti;
option2.value = SemanticTaskPropertySet.types[i].ti;
ti.appendChild(option2);
}
}
该行的值:
option.value = SemanticTaskPropertySet.types[i].bc_id;
我得到了 bc.value;
但是我怎样才能得到这条线的价值呢?
option.innerHTML = SemanticTaskPropertySet.types[i].bc;
我试过:bc.innerHTML;但这是行不通的。提前致谢!
翻阅古今
德玛西亚99
富国沪深
相关分类