适用于radio和checkbox。
$(".column").eq(0).prop('checked', true);
$("input[name='column']:checked").val();
<input class="bound_section" type="checkbox" title="" value="" />
var arr = [];
var ipt = $(".bound_section");
ipt.each(function(i){
if(ipt.eq(i).prop('checked') == true){
arr.push(ipt.eq(i).val());
}
});
console.log(ipt)