📄 web6.html
字号:
<html>
<head>
<title>Untitled</title>
<script language="JavaScript">
function formReset()
{
document.getElementById("myForm").reset();
}
</script>
</head>
<body>
<p>enter some text in the text field below,and then press the "reset" button to reset the form</p>
<form id="myForm">
name: <input type="text" size="20"></br>
age:<input type="text" size="20"></br>
</br>
<input type="button" onclick="formReset()" value="reset">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -