06.htm

来自「介绍了javascript的常用的函数」· HTM 代码 · 共 18 行

HTM
18
字号
<html>
<head>
<title>根据不同的浏览器前往不同页面</title>
</head>
<body>
<script language="javascript">
<!--
	info = navigator.appName.toUpperCase();
	if (info == "MICROSOFT INTERNET EXPLORER"){
		window.location = "explorer.htm";
	}
	if (info == "NETSCAPE"){
		window.location = "netscape.htm";
	}
//-->
</script>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?