Пришло на ум так
$('.input_vote').each(function(){
if($(this).prop('checked')){
console.log($(this).val());
}
});
Но мне кажется это не верный способ. Как сделать правильно? И коротко
$('.input_vote').each(function(){
if($(this).prop('checked')){
console.log($(this).val());
}
});
$('selector').val();
<input type="radio" name="test" value="1">
<input type="radio" name="test" value="2">
<input type="radio" name="test" value="3">
<input type="radio" name="test" value="4">
Цитата (Reh @ 27.12.2015 - 15:21) |
А как быть в данном случае? |
$('[name=test]:checked').val()
<feldset id='wrap1'>
<input type="radio" name="test" value="1">
<input type="radio" name="test" value="2">
<input type="radio" name="test" value="3">
<input type="radio" name="test" value="4">
</feldset>
$('#wrap1 [name="test"]:checked').val();
$('[name="test"]:checked').val();