我编写了一个函数来填充表单标签。该脚本创建选项,但它不会用我的数组条目填充选项标签。我希望你能帮助我。
这是我的代码
window.onload = function() {
var VideoListe = $("VideoListe");
for (i=0;i<Videos.length;i++) {
var Entry = $("select").append('<option>');
//Entry.text= Videos[i][1];
$('<option>').append(Videos[i][0]);
VideoListe.add(Entry ,null);
}
}
编辑:这是该问题的 HTML 代码:
<div class="wr_chapters">
<form>
<select id="VideoListe">
</select>
<button onclick="nextClip()">Zum nächsten Video</button>
</form>
</div>