1、Html代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <form method="post" action="hello">
        名称:<input type="text" name="name"><br>
        年龄:<input type="text" name="age"><br>
        <input type="submit" value="post提交">
    </form>
    <hr>
    <form method="get" action="hello">
        名称:<input type="text" name="name" value=""><br>
        年龄:<input type="text" name="age" value=""><br>
        <input type="submit" value="get提交" name="submit">
    </form>
</body>
</html>
html Code

相关文章:

  • 2021-10-27
  • 2021-10-26
  • 2022-12-23
  • 2021-11-05
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-22
  • 2022-02-23
  • 2021-10-26
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案