“HTML Form表单”的版本间差异

本页内容
无编辑摘要
Neo讨论 | 贡献
无编辑摘要
第1行: 第1行:
HTML 表单用于收集用户输入。用户输入常被发送到服务器进行处理。
HTML 表单用于收集用户输入。用户输入常被发送到服务器进行处理。


== 试试看 ==
<html>
<html>
<form action="/third/http.php" method="GET">
<form action="/third/http.php" method="GET">
第10行: 第11行:
</form>
</form>
</html>
</html>
<sample title="" desc="" hererun="s2">
<html>
<form action="/third/http.php" method="GET">
  <label for="fname">姓名:</label><br>
  <input type="text" id="fname" name="fname" value="小白"><br>
  <label for="age">年龄:</label><br>
  <input type="text" id="age" name="age" value="1"><br><br>
  <input type="submit" value="提交">
</form>
</html>
</sample>

2022年8月14日 (日) 20:00的版本

HTML 表单用于收集用户输入。用户输入常被发送到服务器进行处理。

试试看







示例

<html>
<form action="/third/http.php" method="GET">
  <label for="fname">姓名:</label><br>
  <input type="text" id="fname" name="fname" value="小白"><br>
  <label for="age">年龄:</label><br>
  <input type="text" id="age" name="age" value="1"><br><br>
  <input type="submit" value="提交">
</form>
</html>
此页面最后编辑于2022年8月14日 (星期日) 20:00。