就在網上搜索了一下實現動態標題的方法。
主要搜索就是document.title,這個函數表示的是網頁的標題。測試代碼:
<html>
<head>
<title></title>
</head>
<body>
<script type=”text/javascript”>
document.title=”我是網頁title”;
</script>
</body>
</html>
另外就是動態功能,使用的函數是setTimeout。這個函數接受兩個參數,第一個是函數名,第二個間隔時間(單位是毫秒);如:
setTimeout(“test()”,1000);
結合起來實現動態網頁代碼就是:
<html>
<head>
<title>測試title</title>
</head>
<body>
<script type=”text/javascript”>
function flashTitle(){
time=new Date();
str=time.getHours()+”:”+time.getMinutes()+”:”+time.getSeconds();
document.title=” “+str;
setTimeout(“flashTitle()”,1000);
}
flashTitle();
</script>
</script>
</body>
</html>
寫這個時發現一個問題,就是IE實現網頁動態時間標題時前面必須加個參數。