菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂</title> <script> function formSubmit() { document.forms["myForm"].submit(); } </script> </head> <body> <form name="myForm" action="form_submit.php" method="get"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br><br> <input type="button" onclick="formSubmit()" value="发送表单数据!"> </form> <p>注意,头部的 JavaScript 部分使用了表单的名称来提交指定的表单。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net