简体   繁体   English

如何向此 Jquery 添加 else 语句?

[英]How can I add an else statement to this Jquery?

$(document).ready(function(){
$("#start_quiz").click(function(){
    $("#start_quiz").fadeOut(0);
    $("#quiz_game").fadeIn('slow');

    $("#answer_button").click(function(){
        if($("#test").is(":checked")){
            $(".questions").fadeOut(200, function(){
                $('#correct_answer').fadeIn('slow');
            });
        };

    });

});
});

I have managed to get this jQuery code to work so that if the correct answer is in my form, it will fade out and display some text.我已经设法让这个 jQuery 代码工作,这样如果正确的答案在我的表单中,它就会淡出并显示一些文本。 I was wondering how I could design this so if any of the other four radio buttons were pressed, it could instead display other text (currently nothing happens).我想知道如何设计它,以便如果按下其他四个单选按钮中的任何一个,它可以显示其他文本(目前没有任何反应)。 Thanks in advance for any help.在此先感谢您的帮助。

if($("#test").is(":checked")){
            $(".questions").fadeOut(200, function(){
                $('#correct_answer').fadeIn('slow');
            });
}
else if($("#testotherone").is(":checked")){
            $(".questions").fadeOut(200, function(){
                $('#otherone_answer').fadeIn('slow');
            });
}
else if($("#testothertow").is(":checked")){
            $(".questions").fadeOut(200, function(){
                $('#othertow_answer').fadeIn('slow');
            });
}
$(document).ready(function () {
    $("#start_quiz").click(function () {
        $("#start_quiz").fadeOut(0);
        $("#quiz_game").fadeIn('slow');

        $("#answer_button").click(function () {
            if ($("#test").is(":checked")) {
                $(".questions").fadeOut(200, function () {
                    $('#correct_answer').fadeIn('slow');
                });
            } else {
                /* YOU WOULD PUT CODE HERE FOR INCORRECT ANSWER */
            }

        });

    });
});

http://jsfiddle.net/24DeT/ http://jsfiddle.net/24DeT/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM