如何获取已通过多种方式尝试过且不返回值的选定复选框的 id
<div class="form">
<li id ='preg1'>¿Qué productos de belleza llevas siempre contigo?<br>
<input type="checkbox" name="vehicle[]" value="hipster" >Bálsamo labial y sombra de un sólo tono.<br>
<input type="checkbox" name="vehicle[]" value="rocker" >Delineador y esmalte en tonos obscuros.<br>
<input type="checkbox" name="vehicle[]" value="chic" >El lipstick y las sombras que te quedan increíble y que jamás pasarán de moda. <br>
<input type="checkbox" name="vehicle[]" value="junkie" >El último lanzamiento de tu marca favorita y el esmalte de uñas que está marcando tendencia<br>
</li>
<li id ='preg2'>¿Para una cita cuál es tu look favorito?<br>
<input type="checkbox" name="vehicle[]" value="hipster">Skinny jeans, maquillaje natural y un accesorio que destaque.<br>
<input type="checkbox" name="vehicle[]" value="rocker">Chamarra de piel y ojos smoky.<br>
<input type="checkbox" name="vehicle[]" value="chic">Blusa con olanes y maquillaje en tonos pastel.<br>
<input type="checkbox" name="vehicle[]" value="junkie">Con las últimas tendencias de pies a cabeza, tanto en outfit como maquillaje.<br>
</li>
</div>
$(document).ready(function() {
$('input[type=checkbox]').on('click', function(){
var parent = $(this).parent().attr('id');
$('#'+parent+' input[type=checkbox]').removeAttr('checked');
$(this).attr('checked', 'checked');
});
});