首页 > 其他 > 详细

input实用技巧: 自定义勾选框图片, 自定义多选与单选. checkbox & radio

时间:2019-03-08 15:23:01      阅读:453      评论:0      收藏:0      [点我收藏+]

1 单选: type="radio" 

技术分享图片 

需求: 男女input只能选择一个

<input type="radio" name="sex" value="男" >男
<input type="radio" name="sex" value="女" >女

 

2 多选: type="checkbox" 

技术分享图片

<input type="checkbox" title="吃饭" >吃饭
<input type="checkbox" title="睡觉" >睡觉
<input type="checkbox" title="打豆豆">打豆豆

 

3 自定义勾选图片的input:

技术分享图片

需求: 勾选时, 自定义勾选图片且单独勾选

h5:
<span class="cheSpan">
<input type="radio" class="check" id="aaa" name="card">
<label for="aaa"></label>
</span>
css 
.cheSpan { position: relative; margin
-right: 37px; } .cheSpan .check { position: absolute; width: 16px; height: 16px; visibility: hidden; } .cheSpan .check+label { display: inline-block; width: 16px; height: 16px; background: url("../images/emptyPoint.png") no-repeat center center; border: 1px solid #898989; border-radius: 50%; margin-bottom: -3px; cursor: pointer; } .cheSpan .check:checked+label { background: url("../images/clickPoint.png") no-repeat center center; background-size: 16px 16px; }

 

转载请注明出处:https://www.cnblogs.com/autoXingJY/p/10495759.html

input实用技巧: 自定义勾选框图片, 自定义多选与单选. checkbox & radio

原文:https://www.cnblogs.com/autoXingJY/p/10495759.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!