Iefans,靠谱的软件下载站

首页 最新文章 最新安卓 最新苹果 浏览器 IE教程 在线图片编辑 最新软件 最新游戏

当前位置: IEfans / IE专区 / IE相关/ 完美兼容ie和firefox的asp.net网站加入收藏和设置主页

完美兼容ie和firefox的asp.net网站加入收藏和设置主页

编辑:秩名2023-06-05 17:00:01

复制代码 代码如下:
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进行添加");
}
}
}
function SetHome(obj, vrl) {
try {
obj.style.behavior = 'url(#default#homepage)'; obj.setHomePage(vrl);
}
catch (e) {
if (window.netscape) {
try {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
}
catch (e) {
alert("此操作被浏览器拒绝! 请在浏览器地址栏输入“about:config”并回车 然后将 [signed.applets.codebase_principal_support]的值设置为'true',双击即可。");
}
var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
prefs.setCharPref('browser.startup.homepage', vrl);
}
}
}
/script

复制代码 代码如下:
* a onclick="SetHome(this,window.location)" style="cursor: pointer;"设为首页/a *a
onclick="AddFavorite(window.location,document.title)" style="cursor: pointer;"收藏本站/a

这样就ok了,小伙伴们可以直接使用到自己的项目中。

您可能感兴趣的文章:

  • 设为首页 加入收藏的js代码
  • javascript 加入收藏、设为首页(IE,firefox兼容Iefans版)
  • javascript 设为首页与加入收藏兼容多浏览器代码
  • 设为首页与加入收藏的JS代码(多浏览器支持)
  • 设为首页加入收藏兼容360/火狐/谷歌/IE等主流浏览器的代码
返回旧版Copyright © 1998-2023 www.iefans.net All Rights Reserved 沪ICP备17019769号-18 意见反馈