jQuery,radio改变事件,radio获取选中的值

// change事件
$('input[type=radio][name=type]').change(function () {
    if (this.value == '1') {
        $('.jump-item').show();
    }
    else if (this.value == '2' || this.value == '3') {
        $('.jump-item').hide();
    }
});
// 获取默认值
let type = $('input[type=radio][name=type]:checked').val();
if (type != 1) {
    $('.jump-item').hide();
}
posted @ 2020-06-20 15:01  TBHacker  阅读(3335)  评论(0编辑  收藏  举报