📄 tryit_view.asp@filename=try_dom_form_submit
字号:
<html>
<head>
<script type="text/javascript">
function formSubmit()
{
document.getElementById("myForm").submit();
}
</script>
</head>
<body>
<p>Enter some text in the text fields below, and then press the "Submit" button to submit the form.</p>
<form id="myForm" action="js_form_action.asp" method="get">
Firstname: <input type="text" name="firstname" size="20"><br />
Lastname: <input type="text" name="lastname" size="20"><br />
<br />
<input type="button" onclick="formSubmit()" value="Submit">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -