JS实现鼠标经过不同链接显示不同背景颜色。用链接改变网页的背景颜色,鼠标只要放在链接上面,网页的背景色即变换,代码中,使用JavaScript的document.bgColor方法通过设定bgcolor属性来改变背景色为指定地颜色。至于需要变成什么颜色,这个由您来决定,你可以自定义这些颜色。
演示:
<html><head><title>链接驱动背景色</title><style type="text/css"><!--A {COLOR: 000000; FONT-SIZE: 9pt; FONT-WEIGHT: 400; TEXT-DECORATION: none }--></style><script><!--function cbgcolor(color){ //改变背景色document.bgColor=color //通过设定bgcolor属性来改变背景色为指定地颜色。}//--></script></head><body><table border="1" width="100%" height="278"><tr><td width="50%" align="center" height="139"><a href=# onMouseOver="cbgcolor('#ff0000')"><b>新浪sina(链接色:红色)</b></a></td><td width="50%" align="center" height="139"><a href=# onMouseOver="cbgcolor('#ff8080')"><b>网易163(链接色:粉红)</b></a></td></tr><tr><td width="50%" align="center" height="139"><a href=# onMouseOver="cbgcolor('#ff8040')"><b>网wfuyu.com(链接色:金黄)</b></a></td><td width="50%" align="center" height="139"><a href=# onMouseOver="cbgcolor('#0080ff')"><b>搜狐soho(链接色:浅蓝)</b></a></td></tr></table></body></html><div style="text-align:center;margin:30px 0 0 0;"><hr style="color:#999;height:1px;">如不能显示效果,请按Ctrl+F5刷新本页,更多网页代码:<a href='http://www.wfuyu.com/' target='_blank'>http://www.wfuyu.com/</a></div>提示:可修改后代码再运行!
上一篇 清空SQL Server数据库中所有表数据的方法
下一篇 SQL SERVER基础:操作与命令大全