js用图片代替当前时间的每个数字该怎么做,求大神,在线等 100
js:<script type="text/javascript">
function toDou(n){//将十以内的数字转换成两位
if(n<10){
return '0'+n;
}else{
return ''+n;
}
}
function tick(){//获取当前时间,并转换为字符串,循环获取字符串并改变节点图片路径
var oDate = new Date();
var str = toDou(oDate.getHours())+toDou(oDate.getMinutes())+toDou(oDate.getSeconds());
var oImg = document.getElementsByTagName('img');
for(var i = 0;i<oImg.length;i++){//charAt()兼容性要比str[i]好
oImg[i].src = 'img/'+str.charAt(i)+'.png';
}
}
window.onload = function(){//setInterval(function(){},毫秒);每隔指定的时间就执行一次函数
tick();
setInterval(tick, 1000);
};
</script>