web34.html
来自「javascript 的一些简单例子 主要面对初学者」· HTML 代码 · 共 50 行
HTML
50 行
<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 + =
减小字号Ctrl + -
显示快捷键?