名種樣式的加入收藏和設為主頁代碼。
還有一些最基本的Html代碼,只供初學者參考。
注意:此代碼只兼容IE浏覽器
1:實現”
加入收藏”功能的代碼如下:
<a href=”Javascript:window.external.AddFavorite(‘http://www.baidu.com‘,‘百度‘)”>加
入收藏</a>
你只需將鏈接與站名改為你自己的站名即可.
如果你要實現鼠標劃過時即提示是否加入收藏,只需將代碼改為:
<a
onmouSEOver=”window.external.addFavorite(‘http://www.baidu.com‘,‘百度‘)” target=_self href=
href="http://www.baidu.com/">http://www.baidu.com>加入收藏</a>
----------------------------------
2.設為首頁代碼(Html源碼)
圖片鏈接
<a style=”cursor:hand” onclick=”this.style.behavior=‘url(#default#homepage)‘;
this.setHomePage
(‘http://www.baidu.com/‘);”>
<img width=16 height=16 border=0 src=”images/house.png”>
<u> Set as Home
Page</u></a>
1.文字型:
< a onclick=”this.style.behavior=‘url(#default#homepage)‘;this.setHomePage(‘http:
//www.baidu.com/‘);” href=”#”>設為首頁</a>
范例:
設為首頁
2.按鈕型:
< input TYPE=”button” VALUE=” 設為首頁 ”
onclick=”this.style.behavior=‘url (#default#homepage)‘;this.setHomePage(‘http://www.baidu.com/‘);” href=”#”>
離
開時自動提示設為首頁
<body onunload=”BASEBody.style.behavior=‘url(#default#homepage)‘;if(!(BASEBody.isHomePage
(‘http://www.baidu.com/‘)))BASEBody.setHomePage(www.baidu.com//‘);”>
—————
———————————————-
打開頁面時自動彈出窗口詢問是否設為首頁
將以下代碼放在<head></head>之間:
<script
language=”Javascript”>
function myhomepage(){
this.homepage.style.behavior=’url(#default#homepage)’;this.homepage.sethomepage(‘http://www.baidu.com’);
}
</script>
<p align=”center”><a href=”http://www.baidu.com/” name=”homepage”
onclick=”myhomepage();”></a>
再將下面代碼加入<body>內
:
onload=”myhomepage();”
即:<body onload=”myhomepage();”>
——————————————————————–
鼠標指向時提示設為首頁
將下列代碼插入<body>區中:
<A href=”http://www.baidu.com/”
onmouSEOver =”this.style.behavior=’url(#default#homepage)’;this.setHomePage(‘http://www.baidu.com/’); ” target=”_blank”>設為首頁</A>
—————————
—————————————–
關閉當前窗口的功能
這裡我們可以先輸入用來標示的文字“關閉窗口”,用鼠標拖動選中它,在“Link”輸入框中鍵入“/”,同時切入源代
碼窗口,在鏈接代碼中鍵入該事件-onclick=”Javascript:window.close(); return false;”。
完整的代碼為:< a href=”/”onclick=”Javascript:window.close(); return false;”>關閉窗
口< /a>
----------------------------------