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