大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>照片点击切换</title>
</head>
<style>
*{
margin:0;
padding:0;
}
#picBox{
margin:100px auto;
width:600px;
height:400px;
}
#pic{
width:600px;
height:400px;
}
#buttonBox{
width:150px;
margin:10px auto;
}
</style>
<body>
<div id="picBox">
<img src="1.jpg" id="pic">
<div id="buttonBox">
<input type="button" value="上一张" onclick="pre();">
<input type="button" value="下一张" onclick="next();">
</div>
</div>
<script>
var picArr=new Array("1.jpg","2.jpg","3.jpg","4.jpg","5.jpg");
var index=0;
function next(){
index++;
if(index==picArr.length){
index=0;
}
document.getElementById("pic").src=picArr[index];
}
function pre(){
index--;
if(index<0){
index=picArr.length-1;
}
document.getElementById("pic").src=picArr[index];
}
</script>
</body>
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/213396.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...