<!--要完成此效果需要兩個步驟 第一步:把如下代碼加入到<head>區域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function settitle() { var a = "你看到這裡的變化了嗎? "; var b = "此腳本十秒種後自動改變標題"; var c = "你想好這裡放什麼內容了嗎?"; var t = new Date(); s = t.getSeconds(); if (s == 10) { document.title = a;} else if (s == 20) { document.title = b;} else if (s == 30) { document.title = c;} else if (s == 40) { document.title = a;} else if (s == 50) { document.title = b;} else if (s == 00) { document.title = c;} setTimeout("settitle()", 1000); } // End --> </script> <!-- 第二步:把“onLoad="settitle()"”加在<body>標記裡 --> <body onLoad="settitle()">