一、自動刷新,並指向新網頁ui
<meta http-equiv="Refresh" content="10; url= http://yourlink">
10秒後刷新到http://yourlink;url
二、網頁間轉換時加入效果
<meta http-equiv="Page-Enter" content="revealTrans(duration=10, transition=50)">
<meta http-equiv="Page-Exit" content="revealTrans(duration=20, transition=6)">
加在一個網頁中,進出時有一些特殊效果,這個功能即FrontPage 98的Format/Page Transition.不過注意所加網頁不能是一個Frame頁;spa
三、強制網頁不被存入Cache中
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="wed, 26 Feb 1997 08:21:57 GMT">
你們能夠到http://www.internet.com上看看,它的首頁當你斷線後,就沒法在cache中再調出。(自己是關於建站很棒的站點)orm
四、定義指向窗口get
<meta http-equiv="window-target" content="top">
能夠防止網頁被別人做爲一個Frame調用.it