时间:2023-10-06 04:12:02 | 来源:网站运营
时间:2023-10-06 04:12:02 来源:网站运营
html网页实现翻页:html网页实现翻页<!-- --><script src="jquery.min.js"></script><script>var i=1;var max_value=10;$("document").ready(function() { $("#jian").click(function () { if(i==1) { i=max_value; $(".show").text(i); } else { i =i-1; $(".show").text(i); } }); $("#jia").click(function () { if(i==max_value) { i=1; $(".show").text(i); } else { i=1+i; $(".show").text(i); } });});</script><style>.anniu{ width:100px; height:50px; background:red;}.show{width:100px;height:50px;background:rgb(143,231,163);text-align:center;line-height:50px;}.anniu,.show{float:left;}</style><div> <div class="anniu" id="jian" ><img src="zuo.png" width=100px height=50px></div> <div class="show"> 1</div> <div class="anniu" id="jia"><img src="you1.png" width=100px height=50px></div></div>
关键词:实现