码迷,mamicode.com
首页 > 其他好文 > 详细

设为首页与加入收藏

时间:2015-04-12 23:58:03      阅读:302      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!