網上收集到的一些小腳本代碼

很實用且必用的小腳本代碼:

腳本1:進入主頁以後自動播放聲音
<embed src="pnm://10.13.31.90/~kayvin/mihunji.rm" hidden=true autostart=true loop=true>

腳本2:進入主頁後自動最大話,省的去在自己單擊了
<script>
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)
</script>

腳本3:顯示現在時間的腳本
<script language=vbscript>document.write now</script>

腳本4:顯示最後修改時間的腳本
<script>document.write(document.lastModified)</script>

腳本5:設爲首頁,加爲收藏,加入頻道,啓動outlook發信
<a style="cursor:hand" 
οnclick="this.style.behavior="url(#default#homepage)";
this.setHomePage("yourURL">設爲首頁</a>

<a style="cursor:hand"
οnclick="window.external.AddFavorite(location.href,document.title);">加入收藏</a>

<a href=javascript:window.external.addChannel("typhoon.cdf")>加入頻道</a>

<a href="youEmail">與我聯繫</a>

腳本6:狀態欄動態顯示現在時間
<script>
function see(){
window.setTimeout("see()",1000);
today = new Date();
self.status = today.toString();
}
</script>
<body οnlοad=see()>

腳本7:關閉窗口的腳本
<a href=javascript:close()>[關閉窗口]</a>

腳本8:按下F12鍵,直接返回首頁
<script>function look(){
if(event.keyCode==123){document.location.href=http://10.13.31.90/~kayvin/}
}
if(document.οnkeydοwn==null)
{document.οnkeydοwn=look}
</script>

腳本9:後退,刷新,前進
<input type=button value=後退 οnclick=history.go(-1)>
<input type=button value=刷新 οnclick=history.go(-0)>
<input type=button value=前進 οnclick=history.go(+1)>

腳本10:設定時間彈出窗口,4000=4秒,當然你可以自定義

<script>function l() {
window.open("yourURL","name","width=500,height=150,border=0")
}
setTimeout("l()",4000)
</script>

 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章