最新消息: 新版网站上线了!!!

jquery checkbox change效果

<input type="checkbox" id="checkbox1" /> <br /> 
<input type="text" id="textbox1" />
$
(document).ready(function() {
    //set initial state.
    $('#textbox1').val($(this).is(':checked'));

    $('#checkbox1').change(function() {
        if($(this).is(":checked")) {
            var returnVal = confirm("Are you sure?");
            $(this).attr("checked", returnVal);
        }
        $('#textbox1').val($(this).is(':checked'));        
    });
});

转载请注明:谷谷点程序 » jquery checkbox change效果