javascript获取浏览器相关设置

一、页面实现的功能:设为首页、收藏本站、屏蔽右键、判断浏览器功能
二、实现思路

1、设为首页:< A onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.taobao.com');return false;" > 【设为首页】< /A>
上面的代码中的url(#default#homepage)的意思就是指向当前页;this.setHomePage('http://www.taobao.com')的意思则是设置主页为http://www.taobao.com
2、收藏本站:window.external.addFavorite('http://www.taobao.com','淘宝网');调用AddFavorite()函数,把网站http://www.taobao.com加入到收藏夹里
3、屏蔽右键:document.οncοntextmenu=click;点击右键时,调用函数click,弹出对话框,屏蔽右键
4、浏览器判断功能:根据浏览器名称获取浏览器类型

三、源代码

<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=gb2312">
<TITLE>综合功能</TITLE>
<STYLE type="text/css">
td{font-size:13px;color:#000000;line-height:28px;}
div{font-size:12px;color:#000000;line-height:20px;}
A{text-decoration:none;font-size:13px;color:#00aa00;line-height:28px;}
</STYLE>
<SCRIPT language="JavaScript">
function click(){
alert('您这是干什么呢?') //点击右键时,弹出警告框,屏蔽右键
return false;
}

function sc(){
window.external.addFavorite('http://www.taobao.com','淘宝网') //收藏本站
}

function detectBrowser()
{
var sAgent = navigator.userAgent.toLowerCase();//浏览器名称转化为小写
this.isIE = (sAgent.indexOf("msie")!=-1); //IE6.0-7浏览器
this.isFF = (sAgent.indexOf("firefox")!=-1); //firefox浏览器
this.isSa = (sAgent.indexOf("safari")!=-1); //safari浏览器
this.isOp = (sAgent.indexOf("opera")!=-1); //opera浏览器
this.isNN = (sAgent.indexOf("netscape")!=-1); //netscape浏览器
this.isMa =(sAgent.indexOf("maxthon")!=-1); //maxthon浏览器
this.isOther = (!this.isIE && !this.isFF && !this.isSa && !this.isOp && !this.isNN && !this.isSa); //未知的浏览器
if(this.isIE)
document.write("/nIE浏览器");
if(this.isFF)
document.write("/nfirefox浏览器");
if(this.isSa)
document.write("/nsafari浏览器");
if(this.isOp)
document.write("/nopera浏览器");
if(this.isNN)
document.write("/nnetscape浏览器");
if(this.isMa)
document.write("/nMaxthon浏览器");
if(this.isOther)
document.write("/n您的浏览器未知");
}

document.οncοntextmenu=click;
</SCRIPT>
</HEAD>

<BODY topmargin="0"><div>
<TABLE width="765" border="0" cellspacing="0" cellpadding="0" align="center" background="image/taobao-top.jpg" height="155" >
<TR><TD width="50%"></TD>
<TD valign="top"><A style="cursor:hand" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.taobao.com');return false;" >
【设为首页】</A>&nbsp;&nbsp;<A href="javascript:sc()">【收藏本站】</A><BR>您的浏览器类型:<FONT color="#FF0000"><SCRIPT language="JavaScript">detectBrowser()
</SCRIPT></FONT></TD>
</TR>
</TABLE></div></BODY>
</HTML>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值