form(表单)标签常⽤标签及属性1.表单标签语法:
<form method="传送⽅式" action="服务器⽂件"></form>textarea中cols表示
(1)<form>标签成对出现,
(2)两种数据传送⽅式(get/post)
2.⽂本框,密码框:
语法:
<form>
<input type="text/password" name="名称" value="⽂本">
</form>
(1)type="text"时,输⼊框为⽂本框
(2)type="password"时,输⼊框为密码框
(3)name,命名⽂本框
(4)value,⽂本框输⼊的默认值
例:
<form>
姓名:<input type="text">
密码:<input type="password">
</form>
3.多⾏⽂本:
语法:
<form>
<textarea rows="⾏数" cols="列数"></textarea>
</form>
例:
<form>
<textarea rows="10" cols="10"></textarea>
</form>
4.单选框,多选框
语法:
<form>
<input type="radio/checkbox" value="值" name="名称"> </form>
type=“radio”时,输⼊框为单选框
type=“checkbox”时,输⼊框为多选框
例:
<form>
<input type="radio" value="' name="">是
<input type="radio" value="" name="">否
</form>
<form>
<input type="checkbox" value="" name="">1
<input type="checkbox" value="" name="">2
<input type="checkbox" value="" name="">3
</form>
5.下拉列表框:
语法:
<form>
<select>
<option value="值"></option>
<option value="值"></option>
<option value="值"></option>
</select>
</form>
6.下拉列表多选框:
语法:
<form>
<select multiple>
<option></option>
<option></option>
<select>
</form>
7.普通,提交,重置按钮:语法:
<form>
<input type="button" value="普通按钮">  <input type="submit" value="提交按钮">  <input type="reset" value="重置按钮">
</form>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。