设为首页 添加到收藏夹 (share)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设为首页 添加到收藏夹 (share)相关的知识,希望对你有一定的参考价值。
设为
设为首页 和 收藏本站js代码 兼容IE,chrome,ff <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进行添加"); } } } </script> //保存到桌面 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安全级别不允许操作!"); } } 页面调用: <a href="javascript:void(0);" onclick="SetHome(this,‘http://www.xyz.com‘);">设为首页</a> <a href="javascript:void(0);" onclick="AddFavorite(‘我的网站‘,location.href)">收藏本站</a>
首页,添加到收藏夹
以上是关于设为首页 添加到收藏夹 (share)的主要内容,如果未能解决你的问题,请参考以下文章