JS实现标题栏显示时间怎么写呢?
html xmlns=http://www。w3。org/1999/xhtml headtitle标题页-学无忧(www。xue51。com)/titleSCRIPT LANGUAGE=JavaScriptvar clocktext;var pagetitle = document。 title; // 获取页面标题function viewTime() {today = new Date(); //获取当前日期sec = today。getSeconds(); //获取秒hr = today。 getHours(); //获取小时min = today。getMinutes(); /...全部
html xmlns=http://www。w3。org/1999/xhtml headtitle标题页-学无忧(www。xue51。com)/titleSCRIPT LANGUAGE=JavaScriptvar clocktext;var pagetitle = document。
title; // 获取页面标题function viewTime() {today = new Date(); //获取当前日期sec = today。getSeconds(); //获取秒hr = today。
getHours(); //获取小时min = today。getMinutes(); //获取分钟if (hr = 9) hr = 0 + hr; //显示2位的小时if (min = 9) min = 0 + min; //显示2位的分钟if (sec = 9) sec = 0 + sec; //显示2位的秒var clocktext = 当前时间是: + hr + : + min + : + sec;//间隔1000毫秒实现时间的更新clocktimer = setTimeout(viewTime(), 1000);document。
title = pagetitle + clocktext; //重新显示标题}if (document。all) viewTime(); //如果是IE浏览器/script/headbody/body/html。
收起