Skip to content

Instantly share code, notes, and snippets.

@hasen
Created August 13, 2016 07:18
Show Gist options
  • Save hasen/8f0f70d479863511cfd01fde2f099c68 to your computer and use it in GitHub Desktop.
Save hasen/8f0f70d479863511cfd01fde2f099c68 to your computer and use it in GitHub Desktop.
選択されているチェックボックスの値をカンマ区切りで取得する.
var hoge_list = $("input[id^=hoge_checkbox_]:checked").map(function () {
return $(this).val();
}).get().join(", ");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment