码迷,mamicode.com
首页 > Web开发 > 详细

jquery判断checkbox最多选几个

时间:2016-01-13 17:29:25      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script src="js/jquery.min.js"></script>
</head>
<body>
<div class="checkbox">
    <input type="checkbox"/>
</div>
<div class="checkbox">
    <input type="checkbox"/>
</div>
<div class="checkbox">
    <input type="checkbox"/>
</div>
<div class="checkbox">
    <input type="checkbox"/>
</div>
<div class="checkbox">
    <input type="checkbox"/>
</div>
<div class="checkbox">
    <input type="checkbox"/>
</div>
<script type="text/javascript">
$(function(){
    $(‘.checkbox‘).find(‘input‘).click(function(){

        if($("input[type=checkbox]:checked").length >= 6)

        {

            $(this).removeAttr("checked");

            alert("最多选5个!")}

    });
})
</script>

jquery判断checkbox最多选几个

标签:

原文地址:http://www.cnblogs.com/qq309240790/p/5127567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!