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

jquery判断checkbox是否被选中

时间:2017-11-07 23:55:33      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:this   文档   check   checked   meta   htm   put   div   alert   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script src="jquery-3.2.1.min.js"></script>
<script>
$(function(){
    $("input[type=checkbox]").change(function(e) {
        //alert(this.checked);
        if(this.checked)
        {
            alert(我被选中了);
        }else
        {
            alert(我没被选中);
        }
    });
});
</script>
</head>

<body>
<input type="checkbox" />
</body>
</html>

 

jquery判断checkbox是否被选中

标签:this   文档   check   checked   meta   htm   put   div   alert   

原文地址:http://www.cnblogs.com/a2b1/p/7801674.html

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