兼容各浏览器的加入收藏夹代码

最近做英文站用到bookmark代码考虑到e文用户浏览器众多网上搜罗了个兼容各浏览器的bookmark代码收藏记录以备后用。

<script type="text/javascript">
// <![CDATA[
function bookmark(){
var title=document.title
var url=document.location.href
if (window.sidebar) window.sidebar.addPanel(title, url,"");
else if( window.opera  &&  window.print ){
var mbm = document.createElement('a');
mbm.setAttribute('rel','sidebar');
mbm.setAttribute('href',url);
mbm.setAttribute('title',title);
mbm.click();}
else if( document.all ) window.external.AddFavorite( url, title);
}
// ]]>
</script>
<a href="javascript:bookmark()">BookMark</a>
This entry was posted in Code and tagged . Bookmark the permalink. [115 views]

Related Posts

  • 暂无相关日志

Comments are closed.