javascript基础:navigator对象、location对象

代码:

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">

  <title>Document</title>

 </head>
 <body>
	<script language="javascript">
	    var o = window.navigator;

		document.write("<br>浏览器的代码名:"+o.appCodeName);
		document.write("<br>浏览器的次级版本:"+o.appMinorVersion);
		document.write("<br>浏览器的名称:"+o.appName);
		document.write("<br>浏览器的平台和版本信息:"+o.appVersion);
		document.write("<br>当前浏览器的语言:"+o.browserLanguage);
		document.write("<br>浏览器中是否启用cookie的布尔值:"+o.cookieEnabled);
		document.write("<br>浏览器系统的CPU等级:"+o.cpuClass);
		document.write("<br>指明系统是否处于脱机模式的布尔值:"+o.onLine);
		document.write("<br>运行浏览器的操作系统平台:"+o.platform);
		document.write("<br>OS使用的默认语言:"+o.systemLanguage);
		document.write("<br>由客户机发送服务器的 user-agent 头部的值:"+o.userAgent);
		document.write("<br>OS的自然语言设置:"+o.userLanguage);

		document.write("<br>规定浏览器是否启用 Java:"+o.javaEnabled());
		document.write("<br>规定浏览器是否启用数据污点(data tainting):"+o.taintEnabled());	
		
		//window.location.href = "http://bbs.csdn.net/topics/392082506?page=1#post-402008075"
		var oo = window.location;		

		document.write("<hr><br>从井号(#)开始的 URL(锚):"+oo.hash);
		document.write("<br>主机名和当前 URL 的端口号:"+oo.host);
		document.write("<br>当前URL的主机名:"+oo.hostname);
		document.write("<br>完整的URL:"+oo.href);
		document.write("<br>当前URL的路径部分:"+oo.pathname);
		document.write("<br>当前URL的端口号:"+oo.port);
		document.write("<br>当前URL的协议:"+oo.protocol);
		document.write("<br>从问号(?)开始的 URL(查询部分):"+oo.search);

	</script>
    <hr>
	<br>
	<input type="button" value="加载新文档" οnclick="location.assign('http://www.baidu.com');">
 	<input type="button" value="重新加载当前文档" οnclick="location.reload();">
	<input type="button" value="用新的文档替换当前文档" οnclick="location.replace('www.baidu.com');">
 </body>
</html>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值