日期:2014-05-16 浏览次数:20576 次
window.onload=function()
{
for(var i=0;i<document.getElementsByTagName("tr").length;i++)
{
var thisTr=document.getElementsByTagName("tr")[i];
thisTr.onclick=function()
{
var newWin=window.open("search.aspx?pact_id="+this.cells[1].innerText);
}
}
}