<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>H5表格</title></head><body><form> 用户名: <br/> <input type="text"> 密码: <input type="password"> 你有喜欢的水果没? <br/> 苹果<input type="checkbox"> 西红柿<input type="checkbox"> 香蕉<input type="checkbox"> <br/> 请选择您的性别? <br/> 男<input type="radio" name="sex"> 女<input type="radio" name="sex"> <br/> 请选择您经常去的网站? <br/> <select> <option>www.baidu.com</option> <option>www.google.com</option> <option>www.youku.com</option> </select> <br/> <input type="button" value="按钮"> <input type="submit"></form> <textarea cols="30" rows="30">请在此填写个人信息</textarea></body></html>
H5的表單元素
form:表單input:輸入域,type屬性可以設定text,password,button等不同的屬性button:option:下拉清單中的選項
button: ! ! ! ! ! ! ! ! !程式碼實例
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>H5表格</title></head><body><form> 用户名: <br/> <input type="text"> 密码: <input type="password"> 你有喜欢的水果没? <br/> 苹果<input type="checkbox"> 西红柿<input type="checkbox"> 香蕉<input type="checkbox"> <br/> 请选择您的性别? <br/> 男<input type="radio" name="sex"> 女<input type="radio" name="sex"> <br/> 请选择您经常去的网站? <br/> <select> <option>www.baidu.com</option> <option>www.google.com</option> <option>www.youku.com</option> </select> <br/> <input type="button" value="按钮"> <input type="submit"></form> <textarea cols="30" rows="30">请在此填写个人信息</textarea></body></html>