87,997
社区成员




function mouseOver(index){
var tableObj = document.getElementById("listTable_"+_obj.divname);
tableObj.rows[index].style.backgroundColor="red";
tableObj.onclick = click;
}
function click(index){
var id = document.getElementById("id_"+index);
id=id!=null?id.value:null;
alert(id);
}