例子:单选按钮确定提交是否可用

Posted 带你疯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了例子:单选按钮确定提交是否可用相关的知识,希望对你有一定的参考价值。

<div style="width:500px; height:500px;">
 <div style="margin-top:20px;">
     <input type="radio" name="sure" id="s1" onclick="KeYong()" />同意
        <input type="radio" name="sure" id="s2" onclick="BuKeYong()" />不同意
    </div>
    <div style="margin-top:30px">
     <input type="submit" value="确定" id="btn" style="width:100px; height:35px;" disabled="disabled" />
    </div>
</div>

 

<script type="text/javascript">
   function KeYong()
 {
    //找到按钮
    var a = document.getElementById("btn");
  
    //操作按钮属性
    a.removeAttribute("disabled");
 }
   function BuKeYong()
 {
    var a = document.getElementById("btn");
    a.setAttribute("disabled","disabled");
 }
</script>

以上是关于例子:单选按钮确定提交是否可用的主要内容,如果未能解决你的问题,请参考以下文章

单选按钮值和提交按钮

IOS 的最佳单选按钮实现

自动填充单选按钮

单击提交后如何获取选定的单选按钮以显示特定的隐藏 div?

带有单选按钮的选择列的引导数据表

jQuery确定在一个单选组中是否至少选中了一个单选按钮