⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 事件focus.htm

📁 这是一些关于JavaScript的学习资料 希望对大家有用
💻 HTM
字号:
<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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -