1个html文件可以添加两个<form>吗,可以的话怎么做
1个html文件可以添加两个<form>吗,可以的话怎么做
1个html文件可以添加两个<form>吗,可以的话怎么做
2017-02-25
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form methor="post" action="save.php"> <lable for="name">用户名</lable> <input type="text" name="myname" value="账户" id="name"/> <lable for="pass"> 密码</lable> <input type="passoword" name="pass" id="pass"/> <input type="submit" value="提交"/> </form> <form methor="post" action="imooc.com"> 爱好<textarea row="10" col="30"> </textarea> 性别:<input type="radio" value="1" name="gender" />男 <input type="radio" value="2" name="gender" />女 职业<select> <option value="techer">教师</option> <option value="other">其他</option> </select> </form> </body> </html>
举报