변경 이벤트에 두 개의 라디오 버튼이 있습니다. 변경 버튼을 원합니다 어떻게 가능합니까? 내 코드
<input type="radio" name="bedStatus" id="allot" checked="checked" value="allot">Allot
<input type="radio" name="bedStatus" id="transfer" value="transfer">Transfer
스크립트
<script>
$(document).ready(function () {
$('input:radio[name=bedStatus]:checked').change(function () {
if ($("input[name='bedStatus']:checked").val() == 'allot') {
alert("Allot Thai Gayo Bhai");
}
if ($("input[name='bedStatus']:checked").val() == 'transfer') {
alert("Transfer Thai Gayo");
}
});
});
</script>
3
조건이 '
—
allot
나는 믿고
—
mplungjan
if($("input[name='bedStatus']:checked").val() == 'allot')
쓸 수if($("input[name='bedStatus']").val() == 'allot')
준비된 캄 마 라규 호 apdane. 고마워 타이 타이 바이.
—
Harsh Manvar