function jisuan()
{
var a=document.getElementsByName("a");
//判断是否是inputif( a[0].rows[0].cells[0].firstChild.nodeName=="INPUT")
{
var input11=a[0].rows[0].cells[0].firstChild.value;
}
//判断是否是selectif( a[0].rows[0].cells[1].firstChild.nodeName=="SELECT")
{
var i=a[0].rows[0].cells[1].firstChild.selectedIndex;
var input12= a[0].rows[0].cells[1].firstChild.options[i].innerText;
}
}