javascript定时变换图片实例代码
更新时间:2013年03月17日 12:07:12 作者:
javascript定时变换图片实例代码,需要的朋友可以参考一下
复制代码 代码如下:
<html>
<head>
<meta http-equiv=Content-Type content="text/html;charset=utf-8">
<script>
y=1;
function imgs()
{
var myImg=document.getElementsByTagName("img")[0];
myImg.src=y+".jpg";
if(y==2)y=1;
else y++;
}
</script>
</head>
<body onload="setInterval(imgs,1000);">
<div align="center">
<img src="1.jpg">
</div>
</body>
</html>
相关文章
javascript中mouseenter与mouseover的异同
javascript中mouseover和mouseenter的区别主要在于监听对象的子元素是否触发事件。mouseover:鼠标移入监听对象中,或者从监听对象的一个子元素移入另一个子元素中时触发该事件。mouseenter:鼠标移入监听对象时触发,在监听对象内移动不会触发。2017-06-06
最新评论