首页>>表单>>左右开关式CheckBox(2019-10-30)

左右开关式CheckBox

左右开关式CheckBox
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div class="example">  
  2.   
  3.             <input id="the_checkbox_id" type="checkbox" name="nobody_cares">  
  4.             <input type="textarea" class="this_shows_when_switch_is_off" placeholder="Switch is OFF">  
  5.             <input type="textarea" class="this_shows_when_switch_is_on" placeholder="Switch is ON">  
  6.             <script>  
  7.                 var $ = jQuery;  
  8.                 $(function(){  
  9.                     canecode_switch("#the_checkbox_id",".this_shows_when_switch_is_off", ".this_shows_when_switch_is_on");  
  10.                 });  
  11.             </script>  
  12.         </div>  

 


原文地址:http://www.freejs.net/article_biaodan_827.html