【实例名称】
JS代码实现两个select的同步
【实例描述】
当选中第一个下拉列表框的时候,第二个下拉列表框的值也随之改变,这被称为两个下拉列表框的同步。本例学习如何实现这种同步效果。
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>标题页-本站(www.xue51.com)</title> </head> <body> <select onchange="selB.options[selectedIndex].selected=true"> <option>testA1</option> <option>testA2</option> <option>testA3</option> <option>testA4</option> <option>testA5</option> </select> <select id="selB"> <option>testB1</option> <option>testB2</option> <option>testB3</option> <option>testB4</option> <option>testB5</option> </select> </body> </html>
【运行效果】
【难点剖析】
本例的技巧就是select标签的“selectedIndex”属性和_“onchange”事件。当用户选择第一个下拉列表框后,第二个下拉列表框也要改变,所以要将此改变添加到第一个下拉列表框的“onchange’’事件中。“selectedIndex’’属性用来获取当前selected标签的选项索引,当知道第一个下拉列表框的选项索引后,使用“options[selectedlndex].selected”就可以自动设置第二个下拉列表框的选择项。
【源码下载】
本实例JS代码下载
……