HTML 表单提交 的简单代码
<form action="check.php" method="post">
用户名:<input type="text" name="user">
密码:<input type="password" name="pw">
<input type="submit" value="提交">
</form>
上面就是一个简单的form表单的简单代码,
method 属性规定如何发送表单数据(表单数据发送到 action 属性所规定的页面)。
表单数据可以作为 URL 变量(method="get")或者 HTTP post (method="post")的方式来发送。
扩展资料:
其他方法html中的表单提交:
<html>
<head>
<script type="text/javascript">
function formSubmit( )
{
document.getElementById("myForm").submit( )
}
</script>
</head>
<body>
<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>
用户名:<input type="text" name="user">
密码:<input type="password" name="pw">
<input type="submit" value="提交">
</form>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>form</title>
</head>
<body>
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<p>
<label>
<input type="text" name="textfield" id="textfield" />
</label>
</p>
<p>
<label>
<textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
</label>
</p>
<p>
<label>
<input type="submit" name="button" id="button" value="提交" />
</label>
</p>
<p>
<label>
<input type="file" name="fileField" id="fileField" />
</label>
</p>
<p>
<label>
<input type="radio" name="radio" id="radio" value="radio" />
</label>
</p>
<p>
<label>
<input type="checkbox" name="checkbox" id="checkbox" />
</label>
</p>
<p>
<input type="hidden" name="hiddenField" id="hiddenField" />
</p>
</form>
</body>
</html>