📄 blurvschangeexample.htm
字号:
<html>
<head>
<title>Blur vs. Change Example</title>
</head>
<body>
<p>Type a few characters in the textbox and then tab to the Submit button.
Then, click on the textbox and tab back to the Submit button without
changing the text.</p>
<form method="post" action="javascript:alert('Submitted!')">
<!-- hidden field -->
<input type="hidden" name="hidden1" value="hidden value" />
<!-- textbox that should get focus -->
<input type="text" name="textbox1" value="" onblur="alert('Blur')" onchange="alert('Change')"/>
<!-- submit button -->
<input type="submit" value="Submit Form" />
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -