来去留在这说一下,网站加入设为首页、加入收藏代码 及其它辅助代码集的应用及方法如下: 首先我们来看设置为首页的方法为: <a href=# onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage('URL');event.returnValue=false;">设为首页 </a> URL就是你要设定的网址地址 要设置当前网页的地址为首页,你可以这样: <a href=# onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage (document.location.href);event.returnValue=false;">设为 首页</a> 上述方法采用javascript的document.location对象的href属性来获得当前网页的全路径。 同理,如果您只想将当前网页所在的域名地址设为首页,您只需将document.location.href改为document.location.host即可。示例如下: <a href=# onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage (document.location.host);event.returnValue=false;">设为 首页</a> 说明:如果当前网页的地址为:http://www.laiquliu.com/zhongzhi/201203zz4472.html,则会将当前网页的域名地址 (www.laiquliu.com)设为首页。 加入到收藏夹中的实现方法为: <a href="Javascript:window.external.addFavorite('http://www.laiquliu.com','来去留技术、学习资源、商品')">加入收藏</a> 举一反三,与上面设为首页的方法一样,如果您要将当前网页加入收藏,而当前网页的网址不确定,您可以采用以下方法: <a href="Javascript:window.external.addFavorite(document.location.href,document.title)">加入收藏</a> 其中的document.title为自动获取当前网页的标题的javascript代码。 用到的代码 document.location.host //获取网页域名地址 document.location.href //获取网页完整路径 document.title //获取网页的标题 <a target=_top href=javascript:window.external.AddFavorite('http://www.laiquliu.com';,'来去留技术、学习资源、商品')>加入收藏 </a> <a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('www.laiquliu.com');">设为首页</a> <P><a target=_top href=javascript:window.external.AddFavorite('<A href="http://www.laiquliu.com&/" target=_blank>http://www.laiquliu.com&</A>#39;,' <A class=Channel_KeyLink href="http://www.laiquliu.com/">来去留技术、学习 资源、商品</A>来去留技术、学习资源、商品')& gt;加入收藏</a></P> <P><BR><a href=#& amp;nbsp;onClick="this.style.behavior= 'url(#default#homepage)'; this.setHomePage('www.laiquliu.com');">设为首页</a>< /P> 图片链接 <a style="cursor:hand" onclick="this.style.behavior=’url(#default#homepage)’; this.setHomePage(’http://laiquliu.com/bookmark-favorites.php’);"> <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.laiquliu.com’);" href="#">设为首页 </a> 例如: 设为首页 2.按鈕型: <input TYPE="button" VALUE=" 设为首页 " onclick="this.style.behavior= ’url(#default#homepage)’;this.setHomePage (’http://www.laiquliu.com’);" href="#"> 离开时自动提示设为首页 <body onunload="BASEBody.style.behavior=’url(#default#homepage)’; if(!(BASEBody.isHomePage(’http://laiquliu.com'))) BASEBody.setHomePage(’http://www.laiquliu.com/’);"> 打开页面时自动弹出窗口询问是否设为首页 字串7 将以下代码放在<head></head>之间: <script language="javascript"> function myhomepage(){ this.homepage.style.behavior=’url(#default#homepage)’; this.homepage.sethomepage(’http://www.laiquliu.com’); } </script> <p align="center"><a href="http:laiquliu.com" name="homepage" onclick="myhomepage();"></a> 再将下面代码加入<body>内: onload="myhomepage();" 即:<body onload="myhomepage();"> 鼠标指向时提示设为首页 将下列代码插入<body>区中: <A href="http://www.laiquliu.com/" onmouseover= "this.style.behavior=’url(#default#homepage)’; this.setHomePage(’http://www.laiquliu.com’);" target="_blank">设为首页</A> 关闭当前窗口的功能 (责任编辑:laiquliu) |