首页 > 代码库 > 例子:单选按钮确定提交是否可用
例子:单选按钮确定提交是否可用
<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="http://www.mamicode.com/确定" 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>
例子:单选按钮确定提交是否可用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。