JavaScript警报框弹出问题

时间:2015-10-30 20:10:25

标签: javascript html alert

单击提交按钮后,我在屏幕上显示警报框时出现问题。我在这个论坛和网上搜索了答案,我没有看到我的代码有什么问题。与我的大多数问题一样,解决方案可能是一个简单的修复,但在完成我的代码之后我似乎无法找到问题。任何帮助表示赞赏。

javascript代码

with open....:
    found = False
    ...
    for line...:
        if word in ...:
            found = True
        ...
    ...
    if not found:
        print(word, 'not found')

html for button弹出警报

<script type="text/javascript">
    function stopClock() {
        clearInterval (clockId);
        correctAns = gradeQuiz();
        alert('You have' + correctAns + 'correct of 5 in' + timer + 'seconds');
    }  
</script>

<script type="text/javascript">
    function runClock() {
        seconds++;
        document.getElementById('quizclock').value=seconds;
    }   
</script>

<script type="text/javascript">
    function startClock() {
        showQuiz();
        clockId=setInterval ("runClock()", 1000);
    }
</script>

function resetQuiz() {
    document.quiz.quizclock.value = 0;
    for (i=0; i<document.quiz.elements.length; i++)document.quiz.elements[i].disabled=false;  
    document.quiz.stop.disabled = true;
}

function showQuiz() {
    document.getElementById("quiztable").style.visibility="visible";
    document.quiz.start.disabled = true;
    document.quiz.stop.disabled = false;
}

function hideQuiz() {
    document.getElementById("quiztable").style.visibility="hidden";
}

function gradeQuiz() {
    correct=0;
    if (document.quiz.q1[1].checked) correct++;
    if (document.quiz.q2[3].checked) correct++;
    if (document.quiz.q3[0].checked) correct++;
    if (document.quiz.q4[3].checked) correct++;
    if (document.quiz.q5[2].checked) correct++;

    document.getElementById("cor1").style.backgroundColor="yellow";
    document.getElementById("cor2").style.backgroundColor="yellow";
    document.getElementById("cor3").style.backgroundColor="yellow";
    document.getElementById("cor4").style.backgroundColor="yellow";
    document.getElementById("cor5").style.backgroundColor="yellow";

    for (i=0; i<document.quiz.elements.length; i++)document.quiz.elements[i].disabled=true;  

    return correct;
}

3 个答案:

答案 0 :(得分:2)

可能你有一个未定义的变量,请查看这个工作演示

function gradeQuiz() {
  return 'something';
}

var clockId, i = timer = 0;

clockId = setInterval(function() {
  i++;

  $('h2').text(i);

}, 200);


function stopClock() {
  clearInterval (clockId);
  correctAns = gradeQuiz();

  alert('You have ' + correctAns + ' correct of 5 in  ' + timer + ' seconds');
}


$('button').on('click', stopClock);

http://jsbin.com/toyibekivu/edit?html,js,output

答案 1 :(得分:0)

如果删除

alert('You have' + correctAns + 'correct of 5 in' + timer + 'seconds');

来自stopClock()功能,屏幕上不会显示任何提示。

答案 2 :(得分:0)

您需要定义变量并在seconds中使用alert

将您的职能更改为:

var clockId;
var seconds = 0;
function stopClock() {
  clearInterval (clockId);
  correctAns = gradeQuiz();
  alert('You have' + correctAns + 'correct of 5 in' + seconds + 'seconds');
}  

function startClock() {
  showQuiz();
  seconds = 0;
  clockId=setInterval (runClock, 1000);
}
相关问题