日期:2014-05-17 浏览次数:20590 次
function senfe(o, a, b, c)
{
var t = document.getElementById(o)
if (t != null)
{
t = t.getElementsByTagName("tr");
for (var i = 1; i < t.length; i++)
{
var bool = true;
t[i].onclick = function()
{
this.x = "0";
this.style.backgroundColor = (this.sectionRowIndex % 2 == 0) ? a : b;
this.color = "#ffffff";
this.style.cursor = "hand";
}
t[i].onmouseover = function()
{
if (this.x != "1")
this.style.cursor = "hand";
}
}
}
}
var FocusTrNum = -1;