02.htm

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

HTM
17
字号
<html>
<head>
<title>定时前往其他页面</title>
<script language="javascript">
<!--
	function gotoUrl(){
		url = "http://www.sina.com.cn/";
		window.location.href = url;
	}
	setTimeout("gotoUrl()",10000);
-->
</script>
</head>
<body>
10秒后自动前往http://www.sina.com.cn/
</body>
</html>

⌨️ 快捷键说明

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