|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
但他也直言说,这就像写软件时,在添加改善的新功能时,难免遭遇稳定性的问题,必须先把问题清除干净,才能推出新产品。破洛洛文章简介:撑持火狐,IE6.ie7.ie8.ie9的保藏网站代码。
以下为具体代码
<script>
varHomepageFavorite={
//设为首页
Homepage:function(){
if(document.all){
document.body.style.behavior=url(#default#homepage);
document.body.setHomePage(window.location.href);
}
elseif(window.sidebar){
if(window.netscape){
try{
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
}
catch(e){
alert("该操纵被扫瞄器回绝,假如想启用该功效,请在地点栏内输出about:config,然后将项signed.applets.codebase_principal_support值该为true");
history.go(-1);
}
}
varprefs=Components.classes[@mozilla.org/preferences-service;1].getService(Components.interfaces.nsIPrefBranch);
prefs.setCharPref(browser.startup.homepage,window.location.href);
}
}
,
//到场保藏
Favorite:functionFavorite(sURL,sTitle){
try{
window.external.addFavorite(sURL,sTitle);
}
catch(e){
try{
window.sidebar.addPanel(sTitle,sURL,"");
}
catch(e){
alert("到场保藏失利,请手动增加.");
}
}
}
}
</script>
撑持火狐,IE6.ie7.ie8.ie9的到场保藏/设为首页代码
<ahref="javascript:HomepageFavorite.Homepage()"_fcksavedurl="javascript:HomepageFavorite.Homepage()">设为首页</a>
<ahref="javascript:HomepageFavorite.Favorite(window.location.href,document.title)"_fcksavedurl="javascript:HomepageFavorite.Favorite(window.location.href,document.title)">到场保藏</a>
</p>
HTML5开发的网页文档类型极其简单,就够了,记得5年前还在反复跟团队强调使用XHTML那段冗长的文档类型声明. |
|