var selValue;
var table = document.getElementById("RadioButtonList1");
for(i=0;i<table.rows[0].cells.length;i++)
if(table.rows[0].cells[i].childNodes[0].checked == true)
selValue = table.rows[0].cells[i].childNodes[0].value;
要注意的是,這裡的RadioButtionList是用水平橫式的(Horizontal),如果用直式的(Vertical),table.rows[0].cells[i]要改為table.rows[i].cells[0]。
轉自 http://felixhuang.pixnet.net/blog/post/25333748
沒有留言:
張貼留言