为了账号安全,请及时绑定邮箱和手机立即绑定

判断!!!如何在JS里面通过value值判断当前选择的按钮,并打印出来

判断!!!如何在JS里面通过value值判断当前选择的按钮,并打印出来

慕斯王 2019-04-18 18:15:49
1.当点击“长期有效”时,打印出“长期有效”。2.当点击自定义后,显示时间弹出框并选择时间后,打印出当前日期。(这边要判断是否选择了日期,没有选择日期的话要alert选择时间)HTML代码<div class="col-sm-10"> <input type="radio" name="inlineRadioOptions1" id="inlineRadio1" value="option1" class="dateChoose" value=" 0">  <label for="inlineRadio1">长期有效</label> <input type="radio" name="inlineRadioOptions1" id="inlineRadio2" value="option2" class="dateChoose others" value= "1">  <label for="inlineRadio2">自定义</label> <input type="date" name="inlineDateChoose" class="form-control dateJump" id="datetimeInput" value="" placeholder="" style="width: 165px"> <button id="btn" class="btn">点我</button> </div>显示/隐藏效果代码<style>     .others ~ input[type='date'] {         display:none;     }     .others:checked ~ input[type='date'] {         display:inline;     }     #date:before {         content:"before";     }     #date::before {         content:"before";     }     </style>显示/隐藏JS效果代码$(function(){         $(".dateChoose").click(function(){             $(this).siblings().attr("checked",false);             $(this).attr("checked",true);             if($(this).attr("class").indexOf('others')>=0){                 $(this).siblings('.dateJump').show();             }             else{                 $(".others").siblings('.dateJump').hide();             }         });     })JS判断代码!!!!var v1 = document.getElementById('inlineRadio1');       var v2 = document.getElementById('inlineRadio2');       if(v1.value == '0'){           times = "长期有效";           console.log(times);           return times;       }       else {           if(v2.value == '1'){               times = $(".dateJump");               console.log(times);               return times;           }           else {               alert("请选择截止时间");               return times;           }       }             $('.btn').click(function () {         console.log(times.val());     })//打印出times的值为时间或者“长期有效”效果图选择长期有效时选择自定义并选择时间各位大佬,主要是判断这边的代码不知道怎么写,我是设置了他value的值,从判断value的值来判断点选了那个选项!!!最终打印出的结果times的值为时间或者“长期有效”!!!
查看完整描述

3 回答

?
湖上湖

TA贡献2003条经验 获得超2个赞

已解决,换了其他的方式后可以成功!


查看完整回答
反对 回复 2019-05-12
?
阿晨1998

TA贡献2037条经验 获得超6个赞

var v1 = document.getElementById('inlineRadio1');
var v2 = document.getElementById('inlineRadio2');
$('.btn').click(function () {
    var times = '请选择截止时间';
    if (v1.checked == true) {
        times = "长期有效";
    } else if (v2.checked == true) {
        times = $(".dateJump").val();
        if (!times||times == "") {
            times = '请选择截止时间';
        }
    }
    console.log(v1.checked, v2.checked, times);
    alert(times)
}) //打印出times的值为时间或者“长期有效”


查看完整回答
反对 回复 2019-05-12
?
尚方宝剑之说

TA贡献1788条经验 获得超4个赞

document.getelementbyid("inlineRadio1").innerText应该能读取它的文本值


查看完整回答
反对 回复 2019-05-12
  • 3 回答
  • 0 关注
  • 745 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信