这个收藏本站、设为首页代码相信每个网站都会用到,这么常用的代码,网络上流行的一般是很多年前的代码版本,只有兼容IE,对其它浏览器没有考虑,下面的代码可以很好的兼容firefox(FF)和IE
加入收藏javascript代码
function addCookie(){
if (document.all){
window.external.addFavorite('http://www.candoudou.com','蚕豆豆儿');
}else if(window.sidebar){
window.sidebar.addPanel('蚕豆豆儿', 'http://www.candoudou.com', "");
}
}
if (document.all){
window.external.addFavorite('http://www.candoudou.com','蚕豆豆儿');
}else if(window.sidebar){
window.sidebar.addPanel('蚕豆豆儿', 'http://www.candoudou.com', "");
}
}
/***淘宝的收藏本站的代码***/
function addBookmark(title,url) {
if(!title){title =document.title};
if(!url){url=window.location.href}
if (window.sidebar) {
window.sidebar.addPanel(title,url ,"");
} else if( document.all ) {
window.external.AddFavorite(url,title);
} else if( window.opera && window.print ) {
return true;
}
}
if(!title){title =document.title};
if(!url){url=window.location.href}
if (window.sidebar) {
window.sidebar.addPanel(title,url ,"");
} else if( document.all ) {
window.external.AddFavorite(url,title);
} else if( window.opera && window.print ) {
return true;
}
}
/***淘宝的收藏本站的代码***/
设为首页javascript代码
function setHomepage(){
if (document.all){
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.candoudou.com');
}else if(window.sidebar){
if(window.netscape){
try{netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
}catch (e){
alert( "亲爱的用户你好:\n你使用的不是IE浏览器,此操作被浏览器阻挡了,你可以选择手动设置为首页!\n给你带来的不便,本站深表歉意。" );
}
}
}
}
if (document.all){
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.candoudou.com');
}else if(window.sidebar){
if(window.netscape){
try{netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
}catch (e){
alert( "亲爱的用户你好:\n你使用的不是IE浏览器,此操作被浏览器阻挡了,你可以选择手动设置为首页!\n给你带来的不便,本站深表歉意。" );
}
}
}
}