删除空白元素

时间:2013-12-06 14:53:00

标签: javascript php null indexing element

我自己尝试过这样做但到目前为止我只能在循环中禁用空白元素我正在执行以下操作:

 echo "\t\t\tdocument.choice.field1.options[index].disabled=true;\n";

以上禁用这些行,但后来我尝试将其设为null以删除空白行/元素但它不起作用,该元素显示为null,我需要完全删除它。

 echo "\t\t\tdocument.choice.field1.options[index]=null;\n";

1 个答案:

答案 0 :(得分:0)

您可能正在寻找的是removeChild

您的代码看起来像

document.choice.field1.removeChild(document.choice.field1.options[index])