单选框radio改变事件

    xiaoxiao2024-12-28  52

    $(function () { $('input').on('ifChecked', function (event) { var dataType = $(event.target).val(); if (dataType == "0") { $("#table").parents(".form-group").hide(); } else if (dataType == "1") { $("#table").parents(".form-group").show(); } }); });

     

    最新回复(0)