下面是我的jsp代碼和js代碼:
<ul>
<li><a href="<%=request.getContextPath()%>/admin/login">後台管理</a></li>
<li><a onclick="AddFavorite(window.location,'檢驗所')" href="javascript:void(0)">收藏本站</a></li>
<li style="border:none;"><a onclick="SetHome(this,window.location)" href="javascript:void(0)">設為首頁</a></li>
</ul>
//收藏本站
function AddFavorite(sURL, sTitle) {
var ctrl=(navigator.userAgent.toLowerCase()).indexOf('mac')!=-1?'Command/Cmd':'Ctrl';
sURL = encodeURI(sURL);
try{
//IE
window.external.addFavorite(sURL, sTitle);
}catch(e){
try{
//其他浏覽器
window.sidebar.addPanel(sTitle, sURL, "");
}catch(e){
alert("加入收藏失敗,請使用"+ctrl+"+D進行添加,或手動在浏覽器裡進行設置.");
}
}
}
//設為首頁
function SetHome(obj,url){
try{
//IE
obj.style.behavior='url(#default#homepage)';
obj.setHomePage(url);
}catch(e){
//Firefox
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',url);
}else{
alert("您的浏覽器不支持,請按照下面步驟操作:1.打開浏覽器設置。2.點擊設置網頁。3.輸入:"+url+"點擊確定。");
}
}
}
收藏本站只能在IE上有效果,在其他浏覽器上點了就沒有反應,設為首頁點擊後彈出的都是:您的浏覽器不支持,請按照下面······,希望親們給個解決辦法,謝謝!
發布網站後測試firefox就好了
file浏覽firefox無效
webkit核心暫時不支持