DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript定時變換圖片實例代碼
javascript定時變換圖片實例代碼
編輯:關於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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved