时间:2021-07-01 10:21:17 帮助过:29人阅读
如果需要使用图片来实现checkbox的使用,可以使用来实现,实现原理是将label表签代替checkbox的显示,将checkbox的display设置为none,在label标签中使用要显示的图片img,再使用js函数去控制图片的选中与否的切换。
<label for="agree" > <img class="checkbox" alt="选中" src="../img/checked.png" id="checkimg" onclick="checkclick();"> </label> <input type="checkbox" style="display:none" id="agree" checked="checked"> <script> function checkclick(){ var checkimg = document.getElementById("checkimg"); if($("#agree").is(':checked') ){ $("#agree").attr("checked","unchecked"); checkimg.src="../img/unchecked.png"; checkimg.alt="未选"; } else{ $("#agree").attr("checked","checked"); checkimg.src="../img/checked.png"; checkimg.alt="选中"; } } </script>
相信看了这些案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!
相关阅读:
怎样用h5的sse服务器发送EventSource事件
H5的本地存储和本地数据库详细介绍
H5的页面中怎样调用APP功能
以上就是Html怎样对图片实现checkbox方法的详细内容,更多请关注Gxl网其它相关文章!