自定义checkbox和radio的样式 可以换肤
本例代码很长,而且包括不同的效果,请直接看演示页面
XML/HTML Code
- <script>
- $(document).ready(function(){
- $('input').iCheck({
- checkboxClass: 'icheckbox_flat',
- radioClass: 'iradio_flat'
- });
- });
- </script>
- <script>
- $(document).ready(function(){
- $('input').iCheck({
- checkboxClass: 'icheckbox_flat-red',
- radioClass: 'iradio_flat-red'
- });
- });
- </script>
原文地址:http://www.freejs.net/article_biaodan_214.html