<input type="checkbox" class="area" value="kantou">関東 <input type="checkbox" class="area" value="touhoku"> 東北 <input type="checkbox" class="area" value="hokkaidou"> 北海道 area = $('[class="area"]:checked').map(function(){ //$(this)でjQueryオブジェクトが取得できる。val()で値をvalue値を取得。 return $(this).val(); }).get(); //mapの結果がjQueryオブジェクトの配列で返ってくるので、get()で生配列を取得する。 console.log(area); //['kantou','touhoku']のような形で取得でき