简体   繁体   中英

unterminated string constant with if else

I am coding a quiz and need to have it display a certain answer depending on the score.

I had this working when I just had the score being displayed, but now that I have added in the if else, it has stopped working and I am getting an unterminated string constant

$total_score = $first_question + $second_question + $third_question + $fourth_question + $fifth_question + $sixth_question + $seventh_question + $eighth_question + $ninth_question + $tenth_question + $eleventh_question + $twelfth_question + $thirteenth_question + $fourteenth_question + $fifthteenth_question + $sixteenth_question ;
});

$("#btn").click(function() {
   $('#reveal').html("<h3><strong>Total score</strong> " + $total_score +"</h3>"); 

if ($total_score >= 13) {
$('#answer').html("<h3><strong>13-16: Answer</strong></h3>"); 

} else if ($total_score >=9 && $total_score <= 12) {
$('#answer').html("<h3><strong>9-12: answer</strong></h3>"); 

} else if ($total_score >=5 && $total_score <= 8) {
$('#answer').html("<h3><strong>5-8: answer</strong></h3>"); 


 } else {
 $('#answer').html("<h3><strong> everything else</strong></h3>"); 
 }

});

Javascript treats line ends roughly as semicolons (;), so you cannot have multi-line strings as you have in your script. Remove them, and it'll be okay.

In addition to the line breaks as @Spork noted, you need to remove the extraneous "})" after the $total_score calculation:

    $total_score = $first_question + $second_question + $third_question + $fourth_question + $fifth_question + $sixth_question + $seventh_question + $eighth_question + $ninth_question + $tenth_question + $eleventh_question + $twelfth_question + $thirteenth_question + $fourteenth_question + $fifthteenth_question + $sixteenth_question ;
    /* must remove the following:
    });
    */
    $("#btn").click(function() {
        $('#reveal').html("<h3><strong>Total score</strong> " + $total_score +"</h3>"); 

        if ($total_score >= 13) {
            $('#answer').html("<h3><strong>13-16: Answer </strong></h3>"); 

        } else if ($total_score >=9 && $total_score <= 12) {
            $('#answer').html("<h3><strong>9-12: answer </strong></h3>"); 

        } else if ($total_score >=5 && $total_score <= 8) {
            $('#answer').html("<h3><strong>5-8: answer </strong></h3>"); 
        } else {
            $('#answer').html("<h3><strong> everything else</strong></h3>"); 
        }

    });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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