javascript 判断radiobox是否选中

〈input type=radio name=test value='libk' 〉
〈input type=radio name=test value='zyfon'〉
〈input type=radio name=test value='daodao'〉

if ( test[0].checked )  {
    alert(test[0].value)
}

radio button 中的所有选项及其值都可以通过数组来访问, 而不能直接用test.value,
因为test是一个数组,所以test.value是不存在的
而只能用test[x].value

你可能感兴趣的:(【php+mysql】,javascript,input,button)