配列をhtmlで参照
javascriptで作成した配列の要素をhtmlのセレクトボックスの値として
参照したいんですが、どのようにすればいいんでしょうか?
<html><body>
<select name="セレクト">
<option >セレクトボックス
<option value="1st item">1st item //ここに配列items[]の値を代入したい
<option value="2nd item">2nd item
<option value="3nd item">3nd item
<option value="4nd item">4nd item
<option value="5nd item">5nd item
</select><br>
<script language="Javascript">
function Item(name, count) {
this.name = name
this.count = count
}
function cmp_func(lhs, rhs) {
return rhs.count - lhs.count
}
items = new Array(10)
items[0] = new Item("apple", 12)
items[1] = new Item("orange", 34)
items[2] = new Item("banana", 15)
items[3] = new Item("grape", 99)
items[4] = new Item("strawberry", 7)
items[5] = new Item("rasberry", 55)
items[6] = new Item("blueberry", 22)
items[7] = new Item("lemon", 4)
items[8] = new Item("nable", 33)
items[9] = new Item("pear", 44)
items.sort(cmp_func)
for (i=0; i<items.length; i++)
document.write(items[i].count, ":", items[i].name,"<br>")
</script></body></html>
たびたび質問すいませんが、よろしくご教授願