0

新手到 JS。试图确定如何输出问题 1 以外的内容是对与错。如果我理解正确,输出是标志 True 或 False 的表达式。试图改变说正确和不正确。还试图表达正确的百分比而不是例如:您的总分是 10/100

$(function(){
    var jQuiz = {
        answers: { q1: 'd', q2: 'd', },
        questionLenght: 2,
        checkAnswers: function() {
            var arr = this.answers;
            var ans = this.userAnswers;
            var resultArr = []
            for (var p in ans) {
                var x = parseInt(p) + 1;
                var key = 'q' + x;
                var flag = false;
                if (ans[p] == 'q' + x + '-' + arr[key]) {
                    flag = true; g
                }
                else {
                    flag = false;
                }
                resultArr.push(flag);
            }
            return resultArr;
        },
        init: function(){
            $("[class=btnNext]").click(function(){
                if ($('input[type=radio]:checked:visible').length == 0) {

                    return incorrect ;
                }
                $(this).parents('.questionContainer').fadeOut(500, function(){
                    $(this).next().fadeIn(500);
                });
                var el = $('#progress');
                el.width(el.width() + 11 + 'px');
            });
            $('.btnPrev').click(function(){
                $(this).parents('.questionContainer').fadeOut(500, function(){
                    $(this).prev().fadeIn(500)
                });
                var el = $('#progress');
                el.width(el.width() - 11 + 'px');
            })
            $("[class=btnShowResult]").click(function(){
                var arr = $('input[type=radio]:checked');
                var ans = jQuiz.userAnswers = [];
                for (var i = 0, ii = arr.length; i < ii; i++) {
                    ans.push(arr[i].getAttribute('id'))
                }
            })
            $('.btnShowResult').click(function(){
                $('#progress').width(260);
                $('#progressKeeper').hide();
                var results = jQuiz.checkAnswers();
                var resultSet = '';
                var trueCount = 0;
                for (var i = 0, ii = results.length; i < ii; i++){
                    if (results[i] == true) trueCount++;
                    resultSet += '<div> Question ' + (i + 1) + ' is ' + results[i] + '</div>'
                }
                resultSet += '<div class="totalScore">Your total score is ' + trueCount * 4 + ' / 100</div>'
                $('#resultKeeper').html(resultSet).show();
            })
        }
    };
    jQuiz.init();
})
4

2 回答 2

1

你可以改变

resultArr.push(flag);

resultArr.push(flag?"correct":"incorrect");

if (results[i] == true)

if (results[i] === "correct")

我希望百分比计数是

resultSet += '<div class="totalScore">Your % correct is ' + 
  parseInt((trueCount/results.length)*100) + '%</div>'
于 2012-12-16T17:13:04.247 回答
0

改变

' 问题 ' + (i + 1) + ' 是 ' + results[i] + ''

' 问题 ' + (i + 1) + ' 是 ' + (results[i] ? "Correct" ? "Incorect") + ''

其他的喜欢:

resultSet += '<div class="totalScore">Your % correct is ' + (trueCount * 4/100).toFixed(0) + '%</div>'

请通过stackoverflow 上的 Javascript Wiki获取学习指南。

于 2012-12-16T17:09:55.623 回答