JS-property-5秒后跳转到百度

Posted IndustriousHe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS-property-5秒后跳转到百度相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>Document</title>
 </head>
 <body>
  <script>
		function testScreen(){
			var w = screen.width;
			var h = screen.height;
			alert("宽度:"+w+",高度:"+h);
			var aw = screen.availWidth;
			var ah = screen.availHeight;
			alert("可用宽度:"+aw+",可用高度:"+ah);
		}

		function testLocation(){
			alert("5秒钟之后,跳转到百度");
			setTimeout(function(){
				location.href="http://www.baidu.com";
			},5000);
		}
			
	</script>
	<button onclick="testScreen()">测试Screen</button>
	<button onclick="testLocation()">测试Location</button>
 </body>
</html>

以上是关于JS-property-5秒后跳转到百度的主要内容,如果未能解决你的问题,请参考以下文章

多少秒后跳转到指定页面

0秒后跳转到另一个页面

html中 a标签几秒后跳转的语句

网站(javascript等) 如何让网页里某图片被长按3秒后再等待6秒后跳转到某页面?

如何做30秒后自动跳转网页

测试用例