博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
例子:单选按钮确定提交是否可用
阅读量:6396 次
发布时间:2019-06-23

本文共 672 字,大约阅读时间需要 2 分钟。

<div style="width:500px; height:500px;">

 <div style="margin-top:20px;">
     <input type="radio" name="sure" id="s1" οnclick="KeYong()" />同意
        <input type="radio" name="sure" id="s2" οnclick="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>

转载于:https://www.cnblogs.com/l5580/p/5909013.html

你可能感兴趣的文章
Linux命令-----用户和用户组管理
查看>>
文件描述符的重定向
查看>>
怎么查这个文件在linux下的哪个目录
查看>>
参加能源行业顶级盛会 - 联合国国际能源署MC IC1罗马会议
查看>>
内存太大导致老软件不能运行的解决方案
查看>>
找出谁删除了某个表
查看>>
LNMP+Memcached
查看>>
java wait notify的用法
查看>>
我的友情链接
查看>>
mongodb基础
查看>>
apache遇到的错误及解决
查看>>
iOS中后台运行
查看>>
Oracle内部视图:x$ktfbfe
查看>>
历数几款第三方的Oracle数据库安全及漏洞扫描软件
查看>>
NAS基础
查看>>
Nagios安装部署、错误详细解析与Cacti整合文档超精细版本
查看>>
我的友情链接
查看>>
IwebOffice2003
查看>>
maven权威指南archetype创建简单项目报错解决
查看>>
swift2.2 我的第一個XCode APP程式
查看>>