Html中使用自定義圖片來實現(xiàn)checkbox表現(xiàn)的方法
2016/12/29 13:55:21來源:互聯(lián)網(wǎng)
假如必要使用圖片來實現(xiàn)checkbox的使用,可以使用來實現(xiàn),實現(xiàn)原理是將label表簽代替checkbox的表現(xiàn),將checkbox的display設(shè)置為none,在label標(biāo)簽中使用要表現(xiàn)的圖片img,再使用js函數(shù)去控制圖片的選中與否的切換。
javascript Code復(fù)制內(nèi)容到剪貼板
<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>
以上就是小編為大家?guī)淼腍tml中使用自定義圖片來實現(xiàn)checkbox表現(xiàn)的方法悉數(shù)內(nèi)容了,盼望大家多多支持圖趣網(wǎng)~
[教程作者:佚名]
免責(zé)聲明:本站文章系圖趣網(wǎng)整理發(fā)布,如需轉(zhuǎn)載,請注明出處,素材資料僅供個人學(xué)習(xí)與參考,請勿用于商業(yè)用途!
本文地址:http://m.pkvc.cn/tutorial/wd3338.html
本文地址:http://m.pkvc.cn/tutorial/wd3338.html
這些是最新的
最熱門的教程