模拟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

posted @ 2016-10-13 13:17  杜培东  阅读(1044)  评论(0编辑  收藏  举报