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