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