首页 > 其他 > 详细

设为首页与加入收藏

时间:2015-04-12 23:57:58      阅读:492      评论:0      收藏:0      [点我收藏+]

通用代码:

<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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!