6.2.25 BOM 屏幕的可视区域

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
	</body>
	<script type="text/javascript">
		/*
		 
		 * */
		
		window.onload = function(){
			
			console.log(document.documentElement.clientWidth);
			console.log(document.documentElement.clientHeight);
			
			
			window.onresize = function(){
				
				console.log(document.documentElement.clientWidth);
				console.log(document.documentElement.clientHeight);
			}
			
			
			
		}
	</script>
</html>

  

猜你喜欢

转载自www.cnblogs.com/beallaliu/p/9349070.html
bom