1
for (var i = 0; i < allQuestions[n].choices.length; i++) {
var input = document.createElement("input");
input.type = "radio";
input.name = "choices";
input.value = "choice" + i;
var answer = document.getElementById("answer");
var option = document.createTextNode(allQuestions[n].choices[i]);
input.appendChild(option);
answer.appendChild(input);
}
http://jsfiddle.net/slopeofhope81/g9V9d/我想知道爲什麼我的單選按鈕的值顯示在控制檯上,而不是在瀏覽器上時,我運行下面的代碼?
「+1」太謝謝你了〜我不知道這是不是給點作爲正道一個確認! – slopeofhope
你真的挽救了我的挫折感。再次感謝你。 – slopeofhope