Created
March 6, 2013 17:13
-
-
Save ukyo/5101042 to your computer and use it in GitHub Desktop.
jQueryでcheckboxでval()したい ref: http://qiita.com/items/0f0004c35a4d14c09d40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#checkbox').val(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.valHooks.checkbox || $.valHooks.checkbox = {}; | |
| $.valHooks.checkbox.get = function(elem) { | |
| return $(elem).is(':checked'); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.valHooks.checkbox.get = function(elem) { return !!elem.checked; }; | |
| $.valHooks.checkbox.set = function(elem, value) { elem.checked = !!value; }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment