190724html表单练习

it2022-05-09  30

表单练习:

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form action="www.csdn.com" method=""> <label for="one">邮箱:</label> <input type="text" id="one" /><br />   需要通过邮箱激活账户<br /> <label for="two">密码</label> <input type="password" id="two" /><br /> <label for="three">确认密码</label> <input type="password" id="three"/><br /> 性别: <input type="radio" checked="checked"/>男 <input type="radio" />女<br /><br /> 描述一下您的特长:<br /> <textarea></textarea><br /> 选择您的兴趣爱好:<br /> <input type="checkbox" />抽烟 <input type="checkbox" />喝酒 <br /> 选择出生日期:<select> <optgroup label="1900before"></optgroup> <option>1800</option> <option>1700</option> </select> <input type="button" value="普通按钮" /> <input type="submit" value="提交按钮"/> <input type="reset" value="清空按钮"/> </form> </body> </html>

出错部分有:

<label for="one">邮箱:</label> <input type="text" id="one" /><br /> 记不清用id还是name input type="radio" checked="checked"/>男 ```记不清radio的含义 <input type="checkbox" />抽烟 记不清checkbox的含义 <optgroup label="1900before"></optgroup> 忘记给optgroup加label而是写在标签之间导致下拉组不显示 <form action="www.csdn.com" method=""> form为表单域,注意要提交的所有部分都要包括在form中 <input type="button" value="普通按钮" /> <input type="submit" value="提交按钮"/> <input type="reset" value="清空按钮"/> --> <button>默认为提交按钮</button> <button type="submit">提交按钮</button> <button type="reset">清空按钮</button> <button type="button">普通按钮</button> button的另一种写法,注意与前一种不同的是button默认为submit(提交),当button type=button时才是普通按钮

最新回复(0)