事件focus.htm
来自「这是一些关于JavaScript的学习资料 希望对大家有用」· HTM 代码 · 共 44 行
HTM
44 行
<html>
<head>
<title>Listing 9.3. Handling the Focus Event - 品络科技 pinluo.com</TITLE>
</head>
<body>
<b>
1. Click inside the First Name field.<br>
2. Keep your eye on the status bar while pressing Tab.
</b>
<form>
First Name:
<input
type="text"
onFocus="focus_handler('Enter your first name.')"><br>
Last Name:
<input
type="text"
onFocus="focus_handler('Enter your last name.')">
<p>
<input
type="submit"
onFocus="focus_handler('Click this button to submit the form.')">
<input
type="reset"
onFocus="focus_handler('Click this button to reset the form.')">
</form>
<script language="JavaScript" type="text/javascript">
<!--
function focus_handler(field_message) {
status = field_message
}
//-->
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?