码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2020-06-20 16:10:28      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:默认   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!