现在的位置: 首页 > 综合 > 正文

BOM中的navigator对象

2017年11月09日 ⁄ 综合 ⁄ 共 283字 ⁄ 字号 评论关闭
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<script type="text/javascript">
		function win(){
			alert(window.navigator.appName+"\n"+window.navigator.appVersion);
		
		}
	</script>

	<input type="button" value="演示win" onclick="win()" />
</body>
</html>

出现浏览器的名称和版本

【上篇】
【下篇】

抱歉!评论已关闭.