来源:远方网络 | 2005-11-13 14:32:21 | (有32597人读过)
例如,在HTML中,第1个选单如下:
<select name="pulldown_1" size=1> <option>probiscus <option>spider <option>lemur <option>chimp <option>gorilla <option>orangutan </select> 注意这个选单的名称是pulldown_1,但各个选项没有名称。 所以要调用其中的各个选项则有点困难。 幸好数组可以帮助我们调用其中的选项。如果你想改变该下 列选单中的第2个选项,你可以这样做:
window.document.form_1.pulldown_1. options[1].text = 'new_text';
这是因为选单的元素有一个选项属性,而该属性是选单所 有选项的集合而成的数组。点击change the select然后从下拉选单从下列选单中查看其选项是否已经被改变。现在 第2个选项应该是*thau*。 除了选项属性,选单还有一项属性叫做selectedIndex。大 笔一个选项被选择后,selectedIndex属性将变成被选项的 数组索引号(序列号)。选择第2个列表选单中的一个选项, 然后检查索引号。记住数组中的第1个选项的索引号是0。
<a href="#" onClick="alert( 'index is: '+ window.document. form_1.list_1.selectedIndex); return false;">check the index. </a> 表单的名称是form_1,列表选单的名称是list_1。 selectedIndex属性值为 window.document.form_1.list_1. selectedIndex。 你还可 以将selectedIndex设置如下: window.document.form_1.list_1. selectedIndex = 1;
并高亮度显示第2个选项。 一旦你得到被选项的索引号,你就可以发现其内容:
var the_select = window.document.form_1.list_1;
var the_index = the_select.selectedIndex;
var the_selected = the_select. options[the_index].text;
selectedIndex属性很有用,但如果有多个选项同时被选中,会如何呢?有关这方面的内容请阅读multiple selects。 选单元素的处理器为onChange
|