event.html

来自「用于编些网站的Javascript」· HTML 代码 · 共 22 行

HTML
22
字号
<html> 
	<head> 
		<script language="javascript"> 
			function sayHello(){
				alert("Hello !");	
			} 
			
			function overTest(){
				alert("over");	
			}  
			
			function outTest(){
				alert("out");	
			}
		</script>
	</head>
	<body> 
		<h1 onclick="sayHello()">Say Hello, every one ! </h1>
		<h1 ondblclick="sayHello()">this is dblclick test</h1>
		<h1 onmouseover="overTest()" onmouseout="outTest()">this is over & out test</h1>
	</body>
</html>

⌨️ 快捷键说明

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