[求助]求教时间控件
那位大侠有时间控件的代码,请赐教!
有一个定时运行一个页面的程序,看看有没有用?
function changePos2()
{
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
times=hours+":"+minutes+":"+seconds
if (times=="23:50:59"){
window.open('auto.asp','','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top=0,left=0,width=640,height=480');
}
}
interval = setInterval('changePos2()', 100);//每一秒钟自动运行一下changePos2()