|
Function used to determine the selected index.
JSV_getSelectIndexByValue(selectObj, searchValue [, compareCase])
n/a
The index of the OPTION with the designated value,
or SELECTNOTEXISTS
if the designated value could not be found.
The getSelectIndexByValue function uses the following arguments.
Argument | Description |
selectObj | The SELECT object. |
searchValue | Specifies an OPTION value that is to be searched for in designated SELECT object. |
compareCase | Optional. Default is false--case insensitive comparison. |
n/a
n/a
The following lines of code
<FORM ACTION="getSelectIndexByValue.html" NAME="SelectTest" ID="SelectTest" onSubmit="return false;">
<SELECT NAME="ChangeSelect" ID="ChangeSelect" SIZE="1">
<OPTION VALUE="One" SELECTED>One</OPTION>
<OPTION VALUE="Two">Two</OPTION>
<OPTION VALUE="Three">Three</OPTION>
<OPTION VALUE="Four">Four</OPTION>
<OPTION VALUE="Five">Five</OPTION>
<OPTION VALUE="Six">Six</OPTION>
</SELECT>
<INPUT TYPE="button"
NAME="btnTest"
VALUE="Get Index of 'Five'"
CLASS="jsvButtons"
onClick="performTest(this.form);">
</FORM>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
function performTest(formObj) {
alert( "Selected Index: " + JSV_getSelectIndexByValue(formObj.ChangeSelect, "Five") );
}
</SCRIPT>
produce
Copyright © 2000 Roaring Fork Software. All rights reserved.