<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>鼠标移动有色条</title>
</head>
<body>
<script language="JavaScript">
<!--
function sbar(st) {
st.style.backgroundColor = "#ffffcc";
}
function cbar(st) {
st.style.backgroundColor = "";
}
-->
</script>
<table width="750" border="0" cellspacing="0" cellpadding="2" height="100">
<tr onmouseout="cbar(this)" onmouseover="sbar(this)">
<td style="border-style: solid; border-width: 1px"></td>
</tr>
</table>
</body>
</html>