radio中最佳解决方案

radio中最佳解决方案

1、html中

1
2
3
4
5
6
<td>
        <input id="status" name="status" type="radio" value="1" checked="checked" onclick="qy()"/>
        <span>启用</span>
        <input id="status" name="status" type="radio" value="0"  onclick="jy()"/>
         <span>禁用</span>
 </td>

2、js中

1
2
3
4
5
6
7
8
9
10
11
12
function qy(){
    $("input[name='status']").eq(0).attr("checked","checked");
    $("input[name='status']").eq(1).removeAttr("checked");
    $('input[name="status"]:eq(0)').attr("value", 1);
    return;
};
function jy(){
    $("input[name='status']").eq(0).removeAttr("checked");
    $("input[name='status']").eq(1).attr("checked","checked");
    $('input[name="status"]:eq(1)').attr("value", 0);
    return;
};

 

posted @   vimx86  阅读(220)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
阅读排行:
· 盘点!HelloGitHub 年度热门开源项目
· DeepSeek V3 两周使用总结
· 02现代计算机视觉入门之:什么是视频
· C#使用yield关键字提升迭代性能与效率
· 回顾我的软件开发经历(1)
点击右上角即可分享
微信分享提示