码迷,mamicode.com
首页 > 其他好文 > 详细

图片切换实例

时间:2016-02-14 01:38:29      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>
	<meta http-equiv="content-type" content="text/html" charset="UTF-8">
	<script type="text/javascript" >
			var picArr=new Array("1.jpg","2.jpg","3.jpg")	;
			var index=0;
			//展示下一张图片
			function next(){
					index++;
					if (index==picArr.length){
							index=0;
					}
					document.getElementById("img1").src=picArr[index];
			}

			//展示上一张图片
			function precious(){
					index--;
					if (index<0){
							index=picArr.length-1;
					}
					document.getElementById("img1").src=picArr[index];
			
			}
	</script>
	<body>
			<img id="img1"src="1.jpg" width="500" height="300"/><br/>
			<input type="button" value="下一张" onclick="next()"/>
			<input type="button" value="上一张" onclick="precious()"/>
	<body>
	</html>

 

图片切换实例

标签:

原文地址:http://www.cnblogs.com/sosomark/p/5188500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!