这是为 HTML 页面存储五个图像的代码,然后该函数用于一次显示这五个图像。
此代码有效,可以滚动浏览五个图像。
我的问题是是否可以根据特定时间显示的图像定向到不同的 HTML 页面
<script type="text/javascript">
var curImage = 0;
var cImages = ['1.jpg','2.jpg','3.jpg','4.jpg','5.jpg'];
function townHousePics(direction) {
if (direction == 'next') {
curImage++;
if (curImage == 5) {
curImage = 0;
}
}
else
{
curImage--;
// even reset the counter here when
// its getting 0
}
document.images[0].src = cImages[curImage];
}
</script>