(一)、設為首頁
<a href=http://www.thwd.net
onMouseOver=this.style.behavior="url(#default#homepage)";
this.setHomePage("http://www.thwd.net/";);>設為首頁</a>
(二)、收藏本站
<a href=javascript:window.external.addFavorite("http://www.jzzy.com";,"建站資源網")>收藏本站</a>
(三)、在視窗的狀態區顯示滾動資訊
(1) 在BODY中加入代碼
<script
language="javascript">
var msg="歡迎訪問建站資源網,在這裡有你會有所收穫的!";
var i=1
function scroll()
{
mess=msg.substring(i,msg.length)+"
"+msg.substring(0,i)
window.status=mess
i++;
if (i>=msg.length)
i=1; //設定不停滾動
setTimeout("scroll()",200); //設定捲動速度
}
</script>
(2)在BODY標籤中:
<body onload="scroll()">
(四)、在頁面加入目前時間
<script language="javascript">
tdy=new Date();
document.write("目前時間:",tdy.getHours());
document.write(":",tdy.getMinutes());
document.write(":",tdy.getSeconds());
</script>
(五)、前進、後退按鈕
<input type="button" value="<-"
onclick="history.go(-1)">
<input type="button" value="->"
onclick="history.go(1)">
(六)、加入頁面最後修改日期
<script language="javascript">
document.write("本頁最後編輯日期:");
document.write(document.lastModified)
</script>
(七)、前進、後退按鈕
<font onclick="history.go(-1)"> 前一頁</font>
<font onclick="history.go(-2)"> 前兩頁</font>
<font
onclick="history.go(-3)"> 前三頁</font>
<font
onclick="history.go(1)"> 後一頁</font>
<font
onclick="history.go(2)"> 後兩頁</font>
<font
onclick="history.go(3)"> 後三頁</font>
也可設定退後、前進多步
(八)、滑鼠事件
<A HREF="MAILTO:webmaster@jzzy.com"
onmouseover="alert("給我寫信"); return true">信箱</A>
滑鼠放上去顯示警告資訊
(九)、獲得瀏覽器的屬性
navigator.appCodename=undefinednavigator.appName=Microsoft Internet
Explorernavigator.appVersion=4.0 (compatible; MSIE 5.0; Windows 98;
DigExt)navigator.appAgent=undefined
(十)、列印整個頁面
<font
onClick="javascript:window.print()">列印本頁</font>
(十一)、查看源碼
<input
TYPE="button" NAME="view" value="查看本頁的源碼"
onClick="window.location="view-source:" +window.location.href"
class="pt9">
(十二)、重新整理頁面
<font
onClick="history.go(0)">重新整理本頁</font>
(十三)、背景色變換
<input
TYPE="button" value="背景色變換" onClick="BgButton()">
<script>function
BgButton()
{
if (document.bgColor=='#00ffff')
{
document.bgColor='#ffffff';
}
else{document.bgColor='#00ffff';
}
}
</script>
(十四)、Title上顯示資訊
<script
language="javascript1.2">
<!--hide
document.title="今天是星期天"
//--hide-->
</script>