源代码 :
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>开源教程(ossoft.cn)</title> <script> function formSubmit(){ document.getElementById("frm1").submit(); } </script> </head> <body> <p>在下面的输入框中输入一些文本,然后按下“提交表单”按钮提交表单。</p> <form id="frm1" action="form_action.asp"> 第一个名称: <input type="text" name="fname"><br> 最后一个名称: <input type="text" name="lname"><br><br> <input type="button" onclick="formSubmit()" value="提交表单"> </form> </body> </html>
运行结果