📄 event.html
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -