模拟checkbox的最优最简方法
Posted 杜培东
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模拟checkbox的最优最简方法相关的知识,希望对你有一定的参考价值。
<label> <input type="checkbox" name="status" hidden value="1"/> <span class="iconfont"></span> </label>
input[type=checkbox] + .iconfont { font-size:20px; } input[type=checkbox] + .iconfont:before { content: "\e63e"; } input[type=checkbox]:checked + .iconfont:before{ content: "\e617"; }
引入淘宝iconfont字体
来源 http://yincheng.site/using-html-css-instead-of-js
以上是关于模拟checkbox的最优最简方法的主要内容,如果未能解决你的问题,请参考以下文章