我的 HTML 页面上有一个选择元素。我想用一个数组填充它。因为我们可以在动作脚本中将数组作为数据提供者提供给组合框。我执行以下操作
在 HTML...
<table>
<tr>
<td>
<label>Recording Mode:</label>
</td>
<td>
<select id="rec_mode">
</select>
</td>
</tr>
</table>
在 javascript...
var videoSrcArr = new Array("option1", "option2", "option3", "option4", "option5");
使用 VideoSrcArr 加载页面时如何填充 rec_mode 元素?谢谢