• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wjshan0808

Learn from yesterday, Live for today, For a better tomorrow.
 ————wjshan0808

博客园    首页    新随笔    联系   管理    订阅  订阅

JQuery下CheckBox全选全不选反选

    <script src="JS/jquery-1.7.1.js"></script>
    <script type="text/javascript">
        $(function () {
            $('[value=全选]').click(function () {
                $(':checkbox').attr("checked", "checked");
            });
            $('[value=全不选]').click(function () {
                $(':checkbox').removeAttr("checked");
            });
            $('[value=反选]').click(function () {
                ////1.
                //$(':checkbox').each(function () {
                //    $(this).attr("checked", !$(this).attr("checked"));
                //});
                //2.
                // $(':checkbox').each(function () {
                $(':checkbox').attr("checked", function () {
                    if ($(this).attr("checked"))
                        return false;
                    return true;
                });
                // });
            });
        });
    </script>
</head>
<body>
    <input type="button" value="全选" />
    <input type="button" value="反选" />
    <input type="button" value="全不选" /><br />
    <input type="checkbox" id="1" /><label for="1">1</label>
    <input type="checkbox" id="2" /><label for="2">2</label>
    <input type="checkbox" id="3" /><label for="3">3</label>
    <input type="checkbox" id="4" /><label for="4">4</label>
    <input type="checkbox" id="5" /><label for="5">5</label>
    <input type="checkbox" id="6" /><label for="6">6</label>
    <input type="checkbox" id="7" /><label for="7">7</label>
    <input type="checkbox" id="8" /><label for="8">8</label>
    <input type="checkbox" id="9" /><label for="9">9</label>

</body

 


posted @ 2014-03-02 01:11  wjshan0808  阅读(186)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3