<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
#back{
width: 1000px;
height: 600px;
background-color: aqua;
margin: 10px auto;
text-align: center;
}
#images{
width: 980px;
height: 500px;
margin: 10px;
}
</style>
<script type="text/javascript">
window.onload = function(){
var button1 = document.getElementById("pre");
var button2 = document.getElementById("next");
var imgLabel = document.getElementsByTagName("img")[0];
var imgArry = ["img/image1.jpg", "img/image2.jpg", "img/image3.jpg", "img/image4.jpg", "img/image5.jpg", ];
var num = 0;
button1.onclick = function(){
num--;
if(num == -1){
num = imgArry.length-1;
};
imgLabel.src = imgArry[num];
};
button2.onclick = function(){
num++;
if(num == imgArry.length){
num = 0;
};
imgLabel.src = imgArry[num];
};
};
</script>
</head>
<body>
<div id="back">
<img id="images" src="img/image1.jpg" alt="参考">
<button id="pre" type="button">上一张</button>
<button id="next" type="button">下一张</button>
</div>
</body>
</html>
