5种设为主页的代码
feilong.org 修订于2009-11-24 05:16:07 163 次浏览下面是5种设为主页(首页)的一般代码,很简单。
1、关闭网页时,弹出窗口提示是否设为首页代码,目前似乎失效:
<BODY id=iehomepage
onunload="iehomepage.style.behavior='url(#default#homepage)';if(!(iehomepage.isHomePage('http://feilong.org')))iehomepage.setHomePage('http://feilong.org');">
2、打开网页,自动弹出设为主页对话框代码,目前好像不管用:
<BODY id=iehomepage
onload="iehomepage.style.behavior='url(#default#homepage)';if(!(iehomepage.isHomePage('http://feilong.org')))iehomepage.setHomePage('http://feilong.org');">
3、单击链接设为主页
<a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://feilong.orgt');">设为主页</a>
4、鼠标滑过设定为主页
<a href=# onMouseOver="this.style.behavior='url(#default#homepage)';this.setHomePage('http://feilong.org');">设为主页</a>
5、点击页面任何地方提示设为主页
<head><script type="text/javascript">var setN=0;</script></head>
<body onclick="this.style.behavior='url(#default#homepage)';if(!(this.isHomePage('http://www.zhibo126.com/'))&&setN!=1){this.sethomepage('http://www.zhibo126.com/');setN=1;}" >
以上代码在ie内核的浏览器下正常,但在firefox下失效。有些非互联网行业的公司喜欢这所谓的“功能”。但从用户感受角度来讲,设为首页的做法并不值得提倡。
更新网址:https://feilong.org/set-homepage
最初发布:20091124 05:16:07 feilong.org 于广州
加入收藏夹,查看更方便。
所在分类: 网站开发
新作:关闭网页或点击链接提
旧文:一般的收藏本站代码