$defaultColor = '#ffffff';
$activeColor = '#ffcccc';
$tr = document.getElementsByTagName('tr');
for($i in $tr)
{
$tr[$i].onmouseover=function()
{
this.backgroundColor = $activeColor;
}
$tr[$i].onmouseout=function()
{
this.backgroundColor = $defaultColor;
}
}
【 在 lidaof (lidaof) 的大作中提到: 】
: 我想在网页上显示的表格中当鼠标移动到某行时,某行的背景色发生变化
: 应该怎么弄啊,比较简单的方法
: 谢谢啊:)
: ...................
--
FROM 58.31.95.*