JQuery UI widget checkboxradio 用法
- 参考
初始化
1 2 3 4 5 | $(document).ready(function(){ $( "input.tags" ).checkboxradio({ icon: false }); }); |
设置选中状态
1 2 3 4 5 6 7 8 9 10 11 12 | // to check it $("#" + IDProduct).prop("checked", true).checkboxradio("refresh"); // to un-check it $("#" + IDProduct).prop("checked", false).checkboxradio("refresh"); // status $("#" + IDProduct).prop("checked") true/false |