Blogger Information
Blog 250
fans 3
comment 0
visits 321773
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS--滚动条和窗口事件
梁凯达的博客
Original
1905 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		body{height:100000px;}
	</style>
</head>
<body>

</body>
<script>
	//滚动条事件
	window.onscroll = function(){
		console.log(1);
	}
	//调整窗口大小事件
	window.onresize=function(){
		console.log('我调整了窗口大小');
	}
</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post