第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何從文本框中獲取文本并進(jìn)行比較?

如何從文本框中獲取文本并進(jìn)行比較?

偶然的你 2023-09-04 16:56:28
我正在做一個(gè)學(xué)習(xí)意大利語的網(wǎng)站,我的問題是當(dāng)我嘗試從文本框中獲取答案并計(jì)算百分比時(shí),即使我回答正確,它總是給我 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>
查看完整描述

1 回答

?
慕森卡

TA貢獻(xiàn)1806條經(jīng)驗(yàn) 獲得超8個(gè)贊

這是我的解決方案:


var answers = ["abitiamo", "frequentate", "suonano", "trovi", "studia"];

var correctCount = 0;

var result;


function input() {

  correctCount = 0;

  result=0;

  for (i = 0; i < answers.length; i++) {

    var textBox = document.getElementsByName("r" + (i + 1))[0];

    if (textBox.value == answers[i]) {

      correctCount++;

    }

  }

  result = correctCount * 100 / answers.length;

  alert(result + "%");

}

<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>


查看完整回答
反對(duì) 回復(fù) 2023-09-04
  • 1 回答
  • 0 關(guān)注
  • 142 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)