table中当鼠标经过tr

前端之家收集整理的这篇文章主要介绍了table中当鼠标经过tr前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>鼠标经过我效果</title>
</head>
<body>
<!-- tr背景鼠标经过效果-->
<script language=javascript>
function changebg(obj,cl){
var bgcolor;
if(cl=="0"){bgcolor="#E2EDFC";}else{bgcolor="#F8FBFE";}
obj.style.backgroundColor=bgcolor;
}
</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="fafafa">
<tr onmousemove=javascript:changebg(this,0) 
style="backgroud-color:#f8fbfe" 
onmouSEOut=javascript:changebg(this,1)>
<td><a href="http://www.fangyuan80.com">鼠标经过我的家</a></td>
</tr>
<tr onmousemove=javascript:changebg(this,1)>
<td><a href="http://www.fangyuan80.com">鼠标经过我的家</a></td>
</tr>
</table>
<!-- tr背景鼠标经过效果-->
</body>
</html>

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

原文链接:https://www.f2er.com/html/457419.html

猜你在找的HTML相关文章