欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于jQuery实现图片的前进与后退功能

程序员文章站 2024-01-09 09:38:10
代码如下:

代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
#myp{ position:absolute; width:500px; height:400px; top:50%; left:50%; margin-top:-200px; margin-left:-290px; }
img{ width:480px; height:380px;}
</style>
<script src="jquery-1.9.1.js" type="text/javascript"></script>
<script src="jquery1.7.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
var array = [1, 2, 3, 4, 5, 6];
var count = 0;
//后退
$('#button1').click(function () {
if (count > 0) {
count--;
$('img').attr('src', 'images/' + array[count] + '.jpg');
}
})
//前进
$('#button2').click(function () {
if (count < 5) {
count++;
$('img').attr('src', 'images/' + array[count] + '.jpg');
}
})
})
</script>
</head>
<body>
<p id="myp">
<table><tr><td><input id="button1" type="button" value="<" /></td><td><img src="images/1.jpg" /></td><td><input id="button2" type="button" value=">" /></td></tr></table>
</p>
</body>
</html>

上一篇:

下一篇: