表单方法属性有哪些?

method 属性指定如何发送表单数据。
GET 和 POST 是两种将表单数据发送到另一个页面的方法。

<form action="welcome.php" method="post">
// form elements will be placed here
</form>
<form action="welcome.php" method="get">
// form elements will be placed here
</form>
日期:2020-09-17 00:10:48 来源:oir作者:oir