Navigator 2.0, Internet Explorer 3.0; extended to be writable in Navigator 3.0
select.selectedIndex
The selectedIndex property of the Select object is an integer that specifies the index of the selected option within the Select object. If no option is selected, selectedIndex is -1. If more than one option is selected, selectedIndex specifies the index of the first one only.
In Navigator 2.0, selectedIndex is a read-only property. In Navigator 3.0, it is read/write: by setting the value of this property, you cause the specified option to become selected. You also cause all other options to become deselected, even if the Select object has the MULTIPLE attribute specified. When doing list-box style selection (instead of drop-down menu selection) you can deselect all options by setting selectedIndex to -1. Note that changing the selection in this way does not trigger the onchange() event handler.
When the MULTIPLE attribute is specified and selection of multiple options is allowed, the selectedIndex property is not very useful. In this case, to determine which options are selected, you should loop through the options[] array of the Select object, and check the selected property of each Option object.
file: /Techref/language/java/script/definitive/refp_349.htm, 5KB, , updated: 2019/10/14 15:00, local time: 2024/11/8 13:04,
3.139.236.213:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/language/java/script/definitive/refp_349.htm"> [Chapter 21] Reference: Select.selectedIndex</A> |
Did you find what you needed? |