通过鼠标的放置和移走时间 来控制表格的颜色显示 代码:
<script> function show(obj) { obj.style.background="yellow"; } function hide(obj) { obj.style.background="white"; } </script>
<TABLE border="1" width="100%">
<TR onmousemove="show(this)" onmouseout="hide(this)"> <TD>表格</TD> <TD>样式</TD> <TD>颜色</TD> <TD>改变</TD> <TD>效果</TD> </TR>
</TABLE>
|
阅读(1487) | 评论(0) | 转发(0) |