Ejemplo 1: botón de opción onchange jquery
$('input[type=radio][name=bedStatus]').change(function() {
if (this.value == 'allot') {
alert("Allot Thai Gayo Bhai");
}
else if (this.value == 'transfer') {
alert("Transfer Thai Gayo");
}
});
Ejemplo 2: cambiar jquery de radio seleccionado
Say you had radio buttons like these, for example:
<input type="radio" name="gender" value="Male">
<input type="radio" name="gender" value="Female">
And you wanted to check the one with a value of "Male" onload if no radio is
checked:
$(function() {
var $radios = $('input:radio[name=gender]');
if($radios.is(':checked') === false) {
$radios.filter('[value=Male]').prop('checked', true);
}
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)