博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

设置主页 && 收藏网站

Posted on 2008-10-27 18:33  Anna Yang  阅读(184)  评论(0编辑  收藏  举报
关闭网页时弹出设为主页对话框代码:
<BODY id=iehomepage  
onunload="iehomepage.style.behavior=’url(#default#homepage)’;if(!(iehomepage.isHomePage(’http://www.xqsheng.cn’)))iehomepage.setHomePage(’http://www.xqsheng.cn’);">  

打开网页弹出设为主页对话框代码:
<BODY id=iehomepage  
onload="iehomepage.style.behavior=’url(#default#homepage)’;if(!(iehomepage.isHomePage(’http://www.xqsheng.cn’)))iehomepage.setHomePage(’http://www.xqsheng.cn’);">

单击链接设为主页
<a href=# onClick="this.style.behavior=’url(#default#homepage)’;this.setHomePage(’http://www.xqsheng.cn’);">设为主页</a>

鼠标滑过设定为主页
<a href=# onMouseOver="this.style.behavior=’url(#default#homepage)’;this.setHomePage(’http://www.xqsheng.cn’);">设为主页</a>

附添加到收藏夹代码:

离开网页时弹出
<script language="javascript">
function bookmarkit(){window.external.addFavorite(’http://www.xqsheng.cn’,’Xqsheng Blog’)}</script>
<body onunload="bookmarkit()">

网页载入时弹出
<script language="javascript">
function bookmarkit(){window.external.addFavorite(’http://www.xqsheng.cn’,’Xqsheng Blog’)}/
</script>
<body onload="bookmarkit()">

右键弹出
<script language=javascript1.2>
document.all.onMouseDown=new Function("if (event.button==2||event.button==3)window.external.addFavorite(’http://www.xqsheng.cn’,’Xqsheng Blog’)")/
</script>

单击文字弹出
<script language="javascript">
function bookmarkit(){window.external.addFavorite(’http://www.xqsheng.cn’,’Xqsheng Blog’)}/
if (document.all)document.write(’<a href="#" onClick="bookmarkit()">加入收藏夹</a>’)
</script>

鼠标滑过文字弹出
<script language="javascript">
function bookmarkit(){window.external.addFavorite(’http://www.xqsheng.cn’,’Xqsheng Blog’)}/
if (document.all)document.write(’<a href="#" onMouseOver="bookmarkit()">加入收藏夹</a>’)