index.html 375 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <a href="hello?name=123" >请求链接</a>
  9. <form action="a.html" method="post" >
  10. <input type="text" name="name" value="zs" >
  11. <input type="text" name="passwordl" value="123456" >
  12. <input type="submit" value="提交" >
  13. </form>
  14. </body>
  15. </html>