“Изменить флажок jQuery оповещение” Ответ

Мероприятие смены флажки JQUERY

//jQuery listen for checkbox change
$("#myCheckBoxID").change(function() {
    if(this.checked) {
        //I am checked
    }else{
        //I'm not checked
    }
});
Grepper

Изменить флажок jQuery оповещение

$(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'));        
    });
});
Spotless Squirrel

Изменить флажок jQuery оповещение

$('#checkbox1').mousedown(function() {
    if (!$(this).is(':checked')) {
        this.checked = confirm("Are you sure?");
        $(this).trigger("change");
    }
});
Shiny Snake

Изменить флажок jQuery оповещение

$(document).ready(function() {
    //set initial state.
    $('#textbox1').val(this.checked);

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

Ответы похожие на “Изменить флажок jQuery оповещение”

Вопросы похожие на “Изменить флажок jQuery оповещение”

Больше похожих ответов на “Изменить флажок jQuery оповещение” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования