码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-09-26 14:34:37      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

<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>

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

标签:

原文地址:http://www.cnblogs.com/l5580/p/5909013.html

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