欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

单选框radio改变事件

程序员文章站 2022-05-15 15:13:20
Allot Transfer $(document).ready(function() { $('input[type=radio][name=bedStatus]').change(function() { if (this.value == 'allot') { alert("Allot Tha... ......
<input type="radio" name="bedstatus" id="allot" checked="checked" value="allot">allot
<input type="radio" name="bedstatus" id="transfer" value="transfer">transfer




$(document).ready(function() {
    $('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");
        }
    });
});