设置为首页的方法为:
?
1、将你需要的网页地址设为首页
<a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('URL');event.returnValue=false;">设为首页</a>
URL就是你要设定的网址地址
?
2、将当前网页的地址设为首页
<a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage(document.location.href);event.returnValue=false;">设为首页</a>
?
3、将当前网页所在的域名地址设为首页?
<a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage(document.location.host);event.returnValue=false;">设为首页</a>
说明:如果当前网页的地址为:http://www.design007.com/design/index.htm,则会将当前网页的域名地址(www.design007.com)设为首页。
?
?
加入到收藏夹中的实现方法为:
?
1、将你需要的网页地址加入到收藏夹
<a href="Javascript:window.external.addFavorite('http://www.design007.com','设计007')">加入收藏</a>
?
2、将当前网页地址加入到收藏夹
?<a href="Javascript:window.external.addFavorite(document.location.href,document.title)">加入收藏</a>
?
3、将当前网页所在的域名地址加入收藏夹?
<a href="Javascript:window.external.addFavorite(document.location.host,document.title)">加入收藏</a>
?
用到的代码
document.location.host????? //获取网页域名地址
document.location.href????? //获取网页完整路径
document.title?????????????????? //获取网页的标题