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

猜你喜欢

转载自www.cnblogs.com/jiqing9006/p/13168744.html