Home  >  Article  >  Web Front-end  >  js method to implement drop-down box to select images to be displayed_javascript skills

js method to implement drop-down box to select images to be displayed_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:13:572007browse

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn