Skip to content

Instantly share code, notes, and snippets.

@ayies128
Created December 9, 2016 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayies128/a665d1642ff2ebaa25c350a600ad6e39 to your computer and use it in GitHub Desktop.
Save ayies128/a665d1642ff2ebaa25c350a600ad6e39 to your computer and use it in GitHub Desktop.
JQery CheckBox Each
$('[name="cbox"]:checked').each(function(){
if($(this).is(':checked')) {
alert($(this).val() + '<-チェック入ってる');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment