您當(dāng)前位置:圖趣網(wǎng)(Tuquu) >> 網(wǎng)頁設(shè)計教程 >> 移動前端 >> 瀏覽設(shè)計教程

Html中使用自定義圖片來實現(xiàn)checkbox表現(xiàn)的方法

假如必要使用圖片來實現(xiàn)checkbox的使用,可以使用來實現(xiàn),實現(xiàn)原理是將label表簽代替checkbox的表現(xiàn),將checkbox的display設(shè)置為none,在label標(biāo)簽中使用要表現(xiàn)的圖片img,再使用js函數(shù)去控制圖片的選中與否的切換。

&#106avascript 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
web相應(yīng)式布局中iframe自適應(yīng)的方法
淺談HTML的語義化和一些簡單優(yōu)化
圖趣網(wǎng)微信
建議反饋
×