设为主页和加入收藏,为何在IE中正常,在遨游中,加入收藏却无效,求解!
设为主页和加入收藏,为何在IE中正常,在遨游中,加入收藏却无效,求解!
代码如下:
<html><head><title>test</title><script type="text/javascript">function AddFavorite(sURL, sTitle){ try { window.external.addFavorite(sURL, sTitle); } catch (e) { try { if(window.sidebar) { window.sidebar.addPanel(sTitle, sURL, ""); }else{ alert("加入收藏失败,请使用Ctrl+D进行添加"); } } 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("此操作被浏览器拒绝!\n请在浏览器地址栏输入“about:config”并回车\n然后将 [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); }else{ alert("设为主页失败,该浏览器不支持设为主页功能。请手动添加"); } }}</script></head><body><span onclick="SetHome(this,window.location);" style="cursor:pointer;">设为主页</span> <font color="#FFFFFF" size="2" >|</font> <span onclick="AddFavorite(window.location,document.title);" style="cursor:pointer;">加入收藏</span> </body> </html>