diff --git a/README.md b/README.md index e01086c..4efce09 100644 --- a/README.md +++ b/README.md @@ -2,21 +2,26 @@ Checkbox/Radio 插件 ================================================= 用于自定义checkbox/radio样式,支持IE8+,chrome,firefox -使用方法 +引入 ------------------------------------------------- 该插件依赖于 [jquery](http://jquery.com/) -初始化 +用法 -------------------------------------------------- Dom加载完毕后调用 $(selector).kbsElem(); 控件只会初始化type=checkbox 和 type=radio 的元素 $(':checkbox').kbsElem(); $(':radio').kbsElem(); - $('#btnRadio').kbsElem(); //不会做初始化 - - $('input[name="opt"]').kbsElem('checked'); //选中/不选中 + $('#btnRadio').kbsElem(); //不会重复做初始化 + + $('input[name="opt"]').kbsElem('checkAll'); //全部选中 + $('input[name="opt"]').kbsElem('uncheckAll'); //全部不选中 + $('input[name="opt"]').kbsElem('checked', 'Apple'); //选中值为 Apple 的项 + $('input[name="opt"]').kbsElem('checked', 'Apple,Orange'); //选中值为 Apple 和 Orange 的项 + $('input[name="opt"]').kbsElem('unchecked', 'Orange'); //不选中值为 Orange 的项 + $('input[name="opt"]').kbsElem('reverse'); //反选 Demo -------------------------------------------------- diff --git a/example/checkbox.html b/example/checkbox.html index 3b18694..1e79811 100644 --- a/example/checkbox.html +++ b/example/checkbox.html @@ -8,18 +8,28 @@
- 苹果 - 葡萄 - - - +