“Zmień pole wyboru Alert JQuery” Kod odpowiedzi

JQuery Chectbox CHANE Zmień zdarzenie

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

Zmień pole wyboru Alert 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

Zmień pole wyboru Alert JQuery

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

Zmień pole wyboru Alert 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

Odpowiedzi podobne do “Zmień pole wyboru Alert JQuery”

Pytania podobne do “Zmień pole wyboru Alert JQuery”

Więcej pokrewnych odpowiedzi na “Zmień pole wyboru Alert JQuery” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu