使用HTML提交详细信息

mac2024-06-25  58

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <form action="http://47.104.87.243/fw02_springMVC/0502test"> 名字:<input type="text" name="name" value=""><br> 姓氏:<input type="text" name="lname" value=""><br> 登录名:<input type="text" name="username" value="">(可包含)<br> 密码:<input type="text" name="password" value="">(可包含)<br> 再次输入密码:<input type="text" name="passworda" value=""><br> 电子邮箱:<input type="text" name="email" value="">(必须包含)<br> 性别:<input type="radio" name="gender" value="男">男 <input type="radio" name="gender" value="女">女<br> 爱好:<input type="checkbox" name="hobby" value="运动">运动 <input type="checkbox" name="hobby" value="聊天">聊天 <input type="checkbox" name="hobby" value="打游戏">打游戏 <input type="submit"> <input type="reset"> </form> </body> </html>
最新回复(0)