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

2021-02-02 17:15

阅读:467

标签:默认   function   radio   type   cti   show   hide   code   put   

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

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

标签:默认   function   radio   type   cti   show   hide   code   put   

原文地址:https://www.cnblogs.com/jiqing9006/p/13168744.html

上一篇:js 模拟表单提交

下一篇:webpack总结


评论


亲,登录后才可以留言!