HTML checkbox标记

HTML < checkbox> 标记用于定义方形框。它是一种表单元素, 允许用户从给定选项中选择一个或多个选项。
它由< input> 元素的type属性创建, 如以下语法所示:

< input type="checkbox" name="field name" value="http://www.srcmini.com/Initial value">

如果要默认选择任何复选框, 则必须使用以下语法中的“ yes”值设置checked属性:
< input type="checkbox" name="field name" value="http://www.srcmini.com/Initial value" checked="yes">


< html> < head> < /head> < body> < form> Programming Languages: < br> < input type="checkbox" id="C" name="C" value="http://www.srcmini.com/C"/> < label> C< /label> < br> < input type="checkbox" id="Java" name="Java" value="http://www.srcmini.com/Java" checked=?yes?/> < label> Java< /label> < br> < input type="checkbox" id="Python" name="Python" value="http://www.srcmini.com/Python"/> < label> Python< /label> < br> < input type="checkbox" id="PHP" name="PHP" value="http://www.srcmini.com/PHP"/> < label> PHP< /label> < /form> < /body> < /html>

立即测试
【HTML checkbox标记】输出:
HTML checkbox标记

文章图片
浏览器支持
Element Chrome IE Firefox Opera Safari
< checkbox> Yes Yes Yes Yes Yes

    推荐阅读