标签:
通用代码:
<a href="javascript:;"onclick="this.style.behavior=‘url(#default#homepage)‘;this.setHomePage(location.href);">设为首页</a> | <a href="javascript:;" onClick="window.external.AddFavorite(location.href,document.title)">加入收藏</a>
高级代码:
<a href="javascript:;"onclick="this.style.behavior=‘url(#default#homepage)‘;this.setHomePage(location.href);">设为首页</a> | <a href="javascript:AddFavorite(window.location,document.title)" >加入收藏</a>
Js:
<script type="text/javascript"> function AddFavorite(sURL, sTitle) { try{ window.external.addFavorite(sURL, sTitle); } catch (e) { try { window.sidebar.addPanel(sTitle, sURL, ""); } catch (e) { alert("加入收藏失败,请使用Ctrl+D进行添加"); } } } </script>
标签:
原文地址:http://www.cnblogs.com/harxingxing/p/4420856.html