js单击鼠标实现图片来回切换
代码如下,在IE和360中可以实现,但是在火狐中不能,如何修改让它在火狐中也能生效?<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Tran...
代码如下,在IE和360中可以实现,但是在火狐中不能,如何修改让它在火狐中也能生效?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div><img src="image/flash1.jpg" id="imgs" /></div>
<a onclick="first()">上一页</a><a onclick="next()">下一页</a>
</form> </div>
<script type="text/javascript">
var i=1;
function first()
{ i--;
if (i<1)
{i=5;}
document.getElementById("imgs").src="/taobao/image/flash"+i+".jpg";
}
function next()
{ i++;
if (i>5)
{i=1;}
document.getElementById("imgs").src="/taobao/image/flash"+i+".jpg";
}
</script>
</body>
</html> 展开
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div><img src="image/flash1.jpg" id="imgs" /></div>
<a onclick="first()">上一页</a><a onclick="next()">下一页</a>
</form> </div>
<script type="text/javascript">
var i=1;
function first()
{ i--;
if (i<1)
{i=5;}
document.getElementById("imgs").src="/taobao/image/flash"+i+".jpg";
}
function next()
{ i++;
if (i>5)
{i=1;}
document.getElementById("imgs").src="/taobao/image/flash"+i+".jpg";
}
</script>
</body>
</html> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询