ฉันมีปุ่มตัวเลือกสองตัวในเหตุการณ์การเปลี่ยนแปลงฉันต้องการปุ่มการเปลี่ยนแปลงเป็นไปได้อย่างไร รหัสของฉัน
<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
ทั้งสองหากเงื่อนไขถูกเปรียบเทียบกับ 'จัดสรร' ให้เปลี่ยนเป็นการถ่ายโอน .. มันทำงานได้ดี ..
—
Himanth Kumar
ฉันเชื่อว่า
—
mplungjan
if($("input[name='bedStatus']:checked").val() == 'allot')
สามารถเขียนได้if($("input[name='bedStatus']").val() == 'allot')
พร้อม kam ma lagyu ho apdane ขอบคุณคุณจัดสรรไทย gyu bhai
—
Harsh Manvar