jQueryメモ
登録日:
テクニック
チェックボックスでチェックされているものだけを配列風の文字列で取得する
let example = String($("#チェックボックスのID:checked").map(function() { return $(this).val(); }).get().join(",");