单选框radio改变事件

$(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();
            }
        });
    });

 

你可能感兴趣的:(javascript,单选框radio改变事件)