这篇文章主要介绍“html的checkbox多选复选框form控件元素怎么使用”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“html的checkbox多选复选框form控件元素怎么使用”文章能帮助大家解决问题。
Html form checkbox多选复选框控件多选
多选复选框表单控件在网页中比较常见,故名可以选择多项答案。
一、html checkbox多选框语法与结构
<input name="Fruit" type="checkbox" value="" />
使用html input标签,name为自定义,type类型为“checkbox”的表单
扩展阅读:
1、html form
2、html input
3、html radio单选按钮
二、form checkbox用法案例
我们就已开始时候的截图为案例
1、对应主要部分HTML代码:
<form action="" method="get"> 您喜欢的水果?<br /><br /> <label><input name="Fruit" type="checkbox" value="" />苹果 </label> <label><input name="Fruit" type="checkbox" value="" />桃子 </label> <label><input name="Fruit" type="checkbox" value="" />香蕉 </label> <label><input name="Fruit" type="checkbox" value="" />梨 </label> </form>
2、html案例截图
最新评论