jQuery的:checked的用法

ruiguang21發表於2017-12-26
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<script src="../static/js/jquery-3.0.0.min.js"></script>
<body>

<input type="checkbox" id="cr"><label for="cr">我已經閱讀了上面制度</label>

<script>
    $(document).ready(function () {
        var cr=$("#cr");
        cr.click(function(){
            if(cr.is(":checked"))//jquery方法判斷
            {
                alert("感謝你的支援!");
            }
        })

    })


</script>
</body>
</html>

相關文章