猿问

如何从文本框中获取文本并进行比较?

我正在做一个学习意大利语的网站,我的问题是当我尝试从文本框中获取答案并计算百分比时,即使我回答正确,它总是给我 0%!

var ri = [ 0, 1, 2, 3, 4];

var res=0;

var rest;

 function input(){

     ri[0] = document.getElementsByName("r1").value;

     ri[1] = document.getElementsByName("r2").value;

     ri[2] = document.getElementsByName("r3").value;

     ri[3] = document.getElementsByName("r4").value;

     ri[4] = document.getElementsByName("r5").value;

     checkAnswers();

 }

function input(){

    if(ri[0]=="abitiamo"){

        res=res+1;

    }

    if(ri[1]=="frequentate"){

       res=res+1;         

    }

    if(ri[2]=="suonano"){

       res=res+1;

    }

    if(ri[3]=="trovi"){

       res=res+1;

    }

    if(ri[4]=="studia"){

       res=res+1;

    }

    output();        

}


function output(){

    rest = res*100/ri.length;

    alert(rest+"%");

    res=0;

    rest=0;

}

<p style="font-size: large;">

    1. Noi <input type="text" name="r1" style="width: 86px;"> (abitare) a Roma <br>        

    2. Che scuola <input type="text" name="r2" style="width: 86px;"> (frequentare) voi, Gianni e Tommaso?<br>    

    3. Marina e Lucia <input type="text" name="r3" style="width: 86px;"> (suonare) bene il piano. <br>

    4. Luca, tu <input type="text" name="r4" style="width: 86px;"> (trovare) delle informazioni interessanti in questa lezione?<br>     

    5. Luciana <input type="text" name="r5" style="width: 86px;"> (studiare) filosofia a Milano. <br>

</p>               

<button onclick="input()">Click me</button>



偶然的你
浏览 99回答 1
1回答

慕森卡

这是我的解决方案:var answers = ["abitiamo", "frequentate", "suonano", "trovi", "studia"];var correctCount = 0;var result;function input() {&nbsp; correctCount = 0;&nbsp; result=0;&nbsp; for (i = 0; i < answers.length; i++) {&nbsp; &nbsp; var textBox = document.getElementsByName("r" + (i + 1))[0];&nbsp; &nbsp; if (textBox.value == answers[i]) {&nbsp; &nbsp; &nbsp; correctCount++;&nbsp; &nbsp; }&nbsp; }&nbsp; result = correctCount * 100 / answers.length;&nbsp; alert(result + "%");}<p style="font-size: large;">&nbsp; &nbsp; 1. Noi <input type="text" name="r1" style="width: 86px;"> (abitare) a Roma <br>&nbsp; &nbsp; 2. Che scuola <input type="text" name="r2" style="width: 86px;"> (frequentare) voi, Gianni e Tommaso?<br>&nbsp; &nbsp; 3. Marina e Lucia <input type="text" name="r3" style="width: 86px;"> (suonare) bene il piano. <br>&nbsp; &nbsp; 4. Luca, tu <input type="text" name="r4" style="width: 86px;"> (trovare) delle informazioni interessanti in questa lezione?<br>&nbsp; &nbsp; 5. Luciana <input type="text" name="r5" style="width: 86px;"> (studiare) filosofia a Milano. <br>&nbsp; </p>&nbsp; <button onclick="input()">Click me</button>
随时随地看视频慕课网APP

相关分类

Html5
我要回答