jquery判断checkbox是否被选中

Posted ZQC

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery判断checkbox是否被选中相关的知识,希望对你有一定的参考价值。

<!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是否被选中的主要内容,如果未能解决你的问题,请参考以下文章

怎样判断checkbox是不是选中

jquery判断checkbox是否被选中

jQuery 判断 checkbox 是否被选中的几种方法

jquery如何判断checkbox(复选框)是否被选中 ...

怎样判断一组checkbox中是不是有被选中的?

jQuery怎样判断按钮是否被选中