zoukankan      html  css  js  c++  java
  • 设为首页与加入收藏

    通用代码:

    <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>
  • 相关阅读:
    keepass
    gpg
    Wireshark实践
    ssh
    namp
    第十二周
    第十一周
    第十周总结
    第九周学习总结
    编程语言
  • 原文地址:https://www.cnblogs.com/harxingxing/p/4420856.html
Copyright © 2011-2022 走看看