function radioResult(){
\t var r = document.getElementsByName('0');
\t for(var i = 0; i < r.length; i++){
\t \t if(r[i].checked){
\t \t \t rValue = r[i].value;
\t \t \t if(rValue!='1') {
\t \t \t \t r.style.backgroundColor='blue';
\t \t \t } else {
\t \t \t \t alert('correct');
\t \t \t }
\t \t }
\t }
\t qNo++;
\t aCount2++;
}
<input type='radio' name='0' value='1'>a<br>
<input type='radio' name='0' value='2'>b<br>
<input type='radio' name='0' value='3'>c<br>
<input type='radio' name='0' value='4'>d<br>
<hr>
<button id="Mcqsbtn" onclick="radioResult()">Result</button>
的更改背景顏色我想radion按鈕改變爲藍色背景,如果答案是假的。怎麼做。 http://jsfiddle.net/mhabib555/k3h9c046/
更新
謝謝你們。我解決它通過你的幫助
不能更改無線輸入元件,從而容易的CSS屬性。檢查這個:http://webdesign.tutsplus.com/articles/quick-tip-easy-css3-checkboxes-and-radio-buttons--webdesign-8953你將需要標籤,以及更多的東西。 – sinisake