码迷,mamicode.com
首页 > Web开发 > 详细

js实现收藏,首页等功能

时间:2020-07-26 02:01:43      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ext   允许   def   object   codebase   creates   首页   his   方法   

在一些网页中我们可以常见的“设置为首页”和“ 收藏本站”,以及“保存到桌面”等功能,使用js是如何实现的呢?这里为大家分享下实现方法,完美兼容IE,chrome,ff等浏览器。

 

JS代码:

<script type="text/JavaScript">

//设为首页

function SetHome(obj,url){

    try{

        obj.style.behavior=‘url(#default#homepage)‘;

        obj.setHomePage(url);

    }catch(e){

        if(window.netscape){

            try{

                netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");

            }catch(e){

                alert("抱歉,此操作被浏览器拒绝!\n\n请在浏览器地址栏输入“about:config”并回车然后将[signed.applets.codebase_principal_support]设置为‘true‘");

            }

        }else{

            alert("抱歉,您所使用的浏览器无法完成此操作。\n\n您需要手动将【"+url+"】设置为首页。");

        }

    }

}

//收藏本站

function AddFavorite(title, url) {

    try {

        window.external.addFavorite(url, title);

    }

    catch (e) {

        try {

            window.sidebar.addPanel(title, url, "");

        }

        catch (e) {

            alert("抱歉,您所使用的浏览器无法完成此操作。\n\n加入收藏失败,请使用Ctrl+D进行添加");

        }

    }

}

//保存到桌面

function toDesktop(sUrl,sName){

try {

    var WshShell = new ActiveXObject("WScript.Shell");

    var oUrlLink = WshShell.CreateShortcut(WshShell.SpecialFolders("Desktop") + "\\" + sName + ".url");

    oUrlLink.TargetPath = sUrl;

    oUrlLink.Save();

    }  

catch(e) {  

          alert("当前IE安全级别不允许操作!");  

}

}    

</script>

html页面中调用:

<a href="JavaScript:void(0);" onclick="SetHome(this,‘http://www.xyz.com‘);">设为首页</a>

<a href="JavaScript:void(0);" onclick="AddFavorite(‘我的网站‘,location.href)">收藏本站</a>

<a href="JavaScript:void(0);" onclick=" toDesktop(location.href,‘我的网站‘)">保存到桌面</a>

js实现收藏,首页等功能

标签:ext   允许   def   object   codebase   creates   首页   his   方法   

原文地址:https://www.cnblogs.com/weixin2623670713/p/13378403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!