判断选中的radio选中

倚然君

关注

阅读 184

2022-03-31

 $(document).ready(function(){
            $('#txtRyTypeRemark').hide()
            $("input[name='txtRyType']").each(function () {
                $(this).click(function () {
                    if (this.defaultValue == '驾驶员' || this.defaultValue == '志愿者' || this.defaultValue == '赞助商') {
                        $('#txtRyTypeRemark').hide()
                        $('#txtRyTypeRemark').val=''
                    } else {
                        $('#txtRyTypeRemark').show()
                        $('#txtRyTypeRemark').val = ''
                    }
                })
            })
        })

精彩评论(0)

0 0 举报