怎么将页面设置为首页
怎么将页面添加到收藏夹
怎么将页面设置为首页
怎么将页面添加到收藏夹
将下面代码(无论一般静态网页还是动态网页使用都是有效的)放在要放的地方就行了:
<a href="javascript:window.external.AddFavorite('http://www.','飞文网')">加入收藏</a>
<a onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http: //www./');" href="#">设为首页</a>
在web.xml配置文件中可以将你想要的页面设置为第一页显示。
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>兼容FF 加入收藏夹和设为首页</title> <SCRIPT LANGUAGE="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("此操作被浏览器拒绝!\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); } } } //--> </SCRIPT> </head> <body> <a onclick="AddFavorite(window.location,document.title)">加入收藏</a> <a onclick="SetHome(this,window.location)">设为首页</a> </body> </html>
把分给我吧,火狐和ie兼容