📄 web34.html
字号:
<html>
<head>
<title>the page is very good</title>
</head>
<body onload="onload()">
<script language="VBScript">
Sub button1_onclick()
MsgBox "this is onclik"
End Sub
Sub onload()
MsgBox "this is on load"
End sub
Sub text1_onchange()
MsgBox this Is onchange
End Sub
Sub text1_onfocus()
MsgBox "onfocus"
End Sub
Sub text1_keypress()
msgbox"on keypress"
End Sub
Sub text2_keyup()
msgbox"onkeyup"
End Sub
Sub onmouseout()
MsgBox "mouse out"
End Sub
Sub onmouseup()
MsgBox "mouse down"
End Sub
Sub mousedown()
msgbox"mouse down"
End sub
</script>
<form name="form1">
<input type="text" name="text1">
<input type="text" name="text2">
<input type="button" name="button1">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -