Home > Article > Web Front-end > js method to implement drop-down box to select images to be displayed_javascript skills
The example in this article describes the method of implementing drop-down box selection of images to be displayed in js. Share it with everyone for your reference. The specific implementation method is as follows:
<html> <title>下拉框选择要显示的图片</title> <body> <img width=320 height=240 src="images/m01.jpg" name="x1"> <SELECT onChange="document.x1.src=options[selectedIndex].value"> <option value="images/m04.jpg">油菜花开</option> <option value="images/m03.jpg">往事如茶</option> <option value="images/m02.jpg">野花绽放</option> <option value="images/m01.jpg">红叶传情</option> </SELECT> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.