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

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

檢查無(wú)線電輸入時(shí)我的 if 語(yǔ)句不起作用

檢查無(wú)線電輸入時(shí)我的 if 語(yǔ)句不起作用

我正在嘗試驗(yàn)證無(wú)線電輸入以檢查其答案是否正確。但它跳過(guò)了線if (answer == allQuestions[q].correctAnswer)這是完整代碼https://jsfiddle.net/alcatel/sopfmevh/1/for (let k = 0; k < answers.length; k++) {  if (answers[k].checked) {    answer = answers[k].value;  }}// IT SKIPS THIS LINE !!if (answer == allQuestions[q].correctAnswer) { // IT SKIPS THIS LINE!!  alert("correct");}q++;    populate();
查看完整描述

3 回答

?
眼眸繁星

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

我認(rèn)為你的 If 語(yǔ)句應(yīng)該看起來(lái)像這樣

if(answer == allQuestions[q].choices[allQuestions[q].correctAnswer]) {
        alert("correct");
    }

編輯了這個(gè),剛剛嘗試并為我工作


查看完整回答
反對(duì) 回復(fù) 2023-07-29
?
jeck貓

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

您還可以使用數(shù)組中元素的索引進(jìn)行比較。


if(allQuestions[q].choices.indexOf(answer) == allQuestions[q].correctAnswer) {

    alert("correct");

}


查看完整回答
反對(duì) 回復(fù) 2023-07-29
?
動(dòng)漫人物

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

因?yàn)槲易龅搅?..


const allQuestions = 

        [ { question     : 'Where is Helsinki?'

          , choices      : [ 'Sweden', 'Finland', 'Us' ] 

          , correctAnswer: 1

          } 

        , { question     : 'Where is Stockholm?'

          , choices      : [ 'Norway', 'Iceland', 'Sweden' ] 

          , correctAnswer: 2

          } 

        , { question     : 'Where is K?penhamn?'

          , choices      : [ 'Denmark', 'Sweden', 'Norway' ] 

          , correctAnswer: 0

          } 

        ] 

function* qList(arr) { for (let q of arr) yield q }


const libQuestion  = document.querySelector('h1')

  ,   formReplies  = document.getElementById('list')

  ,   btNext       = document.querySelector('button')

  ,   DomParser    = new DOMParser()

  ,   qListRead    = qList( allQuestions )

  ,   score        = { correct: 0, count:0 }

  ;

var currentAnswer = ''

  ;

function setNewQuestion()

  {

  formReplies.innerHTML = ''


  let newQuestion = qListRead.next()

  if (!newQuestion.done)

    {

    libQuestion.textContent = newQuestion.value.question

    currentAnswer           = newQuestion.value.correctAnswer

    ++score.count

    newQuestion.value.choices.forEach((choice,indx)=>

      {

      let line = `<label><input type="radio" name="answer" value="${indx}">${ choice}</label>`

        , inLn = (DomParser.parseFromString( line, 'text/html')).body.firstChild

        ;

      formReplies.appendChild(inLn)

      })

    }

  else

    {

    libQuestion.textContent = ` Score = ${score.correct} / ${score.count}`

    btNext.disabled         = true

    }

  }

setNewQuestion()

btNext.onclick=()=>

  {

  if (formReplies.answer.value)

    {

    score.correct += ( currentAnswer == formReplies.answer.value )

    setNewQuestion()

    }

  }

<h1></h1>

<p></p>

<form id="list"></form>

<br>

<button>next</button>


查看完整回答
反對(duì) 回復(fù) 2023-07-29
  • 3 回答
  • 0 關(guān)注
  • 181 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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