JS如何获取和改变 单选按钮radio选中的值

1、html:

<label style="font-size: 14px"><input id="input1"style="width:25px;height:13px;" type="radio" name="radio" value="否" checked/>label>
<label onclick="fun();" style="font-size: 14px"><input id="input2" style="width:25px;height:13px;" type="radio" name="radio" value="是" />label>

2、JS
获取选中的radios的值

var freshYN = $('input:radio:checked').val();//获取选中的radio的值
//checked代表为选中

3、confirm弹出框的使用

<script>//点击radio“是”弹出窗口显示:是否切换
        function fun(){            
             var r=confirm("确定切换至强制缓存状态吗?")
              if (r==true)
                {                }
              else
                {
                $("#input1").attr("checked",true);
                //取消,则将属性设为改变
                }
        }
    script>

你可能感兴趣的:(Java篇)