1. 程式人生 > >6.2.25 BOM 屏幕的可視區域

6.2.25 BOM 屏幕的可視區域

charset bom client div scrip UNC tex log console

<!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>

  

6.2.25 BOM 屏幕的可視區域