做了一个tab标签式的网页 但是出错了
时间:2011-11-24
来源:互联网
原来想鼠标放在哪个单元格上就把单元格背景换成和层背景一样的黄色 并且出现相应的层中的内容 但是发现要实现换单元格背景就无法实现层的转换 实现层的转换就无法实现转换单元格背景 大家帮我看看这是为什么 先谢谢各位了!
以下为代码
JScript code
以下为代码
JScript code
<html> <head> <title> tab标签式页面(完整版) </title> <style> div.a{width:500;height:500;background- color:yellow} </style> </head> <body> <table width=300 border=0 cellspacing=0> <tr> <td onmouseover="tabchange(0)"> a </td> </a> <td onmouseover="tabchange(1)"> b </td> <td onmouseover="tabchange(2)"> c </td> </tr> </table> <div id=0 class=a>aaaa</div> <div id=1 class=a style="display:none">bbbb</div> <div id=2 class=a style="display:none">cccc</div> <script> function tabchange(i){ for(var a=0;a<3;a++){ if(i==a){document.getElementById (a).style.display="block"} else{document.getElementById (a).style.display="none"} } } var tds=document.getElementsByTagName("td") for(var i=0,td;td=tds[i++];){ td.onmouseover=function() {this.style.background="yellow"} td.onmouseout=function() {this.style.background="white"} } </script> </body> </html>
作者: wan_dou_ 发布时间: 2011-11-24
HTML code
<!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> <title> tab标签式页面(完整版) </title> <style> div.a{width:500;height:500;} </style> </head> <body> <table width=300 border=0 cellspacing=0> <tr> <td> a </td> </a> <td> b </td> <td> c </td> </tr> </table> <div id="0" class="a">aaaa</div> <div id="1" class="a" style="display:none">bbbb</div> <div id="2" class="a" style="display:none">cccc</div> <script> function tabchange(i){ for(var a=0;a<3;a++){ if(i==a){document.getElementById(a+"").style.display="block"} else{document.getElementById(a+"").style.display="none"} } } var tds=document.getElementsByTagName("td"); for(var i=0,td;td=tds[i++];){~function(i){ td.onmouseover=function(){this.style.background="yellow";tabchange(i - 1);} td.onmouseout=function(){this.style.background="white";tabchange(i - 1)} }(i)} </script> </body> </html>
作者: MuBeiBei 发布时间: 2011-11-24
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28