求一个关于DIV层背景颜色的问题

下面是代码,没打完,剩下一部分在补充怎么实现点LlinkNAV里面的按钮,相对的另一个按钮也变成黑色<htmlxmlns="http://www.w3.org/1999/... 下面是代码,没打完,剩下一部分在补充
怎么实现点Llink NAV 里面的按钮,相对的另一个按钮也变成黑色

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
<!--
function changeTab(oA){
var oAName = oA.getAttribute("name");
var oAs = document.getElementsByName(oAName);
for(var i=0; i < oAs.length; i++){
if(oAs[i].className=="selected" && oAs[i] != oA){
oAs[i].className="";
var oDiv = document.getElementById(oAs[i].getAttribute("target"));
oDiv.style.display="none";
}
}
oA.className="selected";
document.getElementById(oA.getAttribute("target")).style.display="";
return false;
}
//-->
</script>
<style type="text/css">
<!--
.nav{clear:both;float:left;width:920px;height:26px;-overflow:hidden;}
.nav li{float:right;text-align:center;line-height:25px;margin-left:5px;}
.nav li a{display:block;width:80px;height:25px;border:1px solid #b0e4ef;border-bottom:none;background:#eff;color:#666;cursor:pointer;}
.nav li a.selected{height:26px;position:relative;background:#444;border-color:#00b2e8;color:#eee;}
.hLink{float:right;color:#b0e4ef;line-height:25px;}
.hLink a, .hLink span{color:#cee;margin:0 5px;text-decoration:none;}
.hLink a:hover{text-decoration:underline;}
-->
</style>
</head>
<body>
<div class="hLink">
<ul class="nav">
<li><a name="nav" target="b3" onclick="return changeTab(this);">按钮3</a></li>
<li><a name="nav" target="b2" onclick="return changeTab(this);">按钮2</a></li>
<li><a name="nav" target="b1" onclick="return changeTab(this);" class="selected">按钮1</a></li>
</ul>
<ul class="nav">
<li><a name="nav" target="b3" onclick="return changeTab(this);">按钮3</a></li>
<li><a name="nav" target="b2" onclick="return changeTab(this);">按钮2</a></li>
<li><a name="nav" target="b1" onclick="return changeTab(this);" class="selected">按钮1</a></li>
</ul>
<div class="hLink">
</body>
</html>

完了
展开
 我来答
lp5276159be1
2013-05-13 · TA获得超过2万个赞
知道大有可为答主
回答量:1万
采纳率:39%
帮助的人:4368万
展开全部
<style type="text/css">
<!--
body,div,ul,li{
margin:0 auto;
padding:0;
}
body{
font:12px "宋体";
text-align:center;
}
a:link{
color:#00F;
text-decoration:none;
}
a:visited {
color: #00F;
text-decoration:none;
}
a:hover {
color: #c00;
text-decoration:underline;
}
ul{
list-style:none;
}
.main{
clear:both;
padding:8px;
text-align:center;
}
#tabs0 {
height: 200px;
width: 400px;
border: 1px solid #cbcbcb;
background-color: #f2f6fb;
}
.menu0{
width: 400px;
}
.menu0 li{
display:block;
float: left;
padding: 4px 0;
width:100px;
text-align: center;
cursor:pointer;
background: #FFFFff;
}
.menu0 li.hover{
background: #f2f6fb;
}
#main0 ul{
display: none;
}
#main0 ul.block{
display: block;
}
-->
</style>
<script>
<!--
function setTab(m,n){
var tli=document.getElementById("menu"+m).getElementsByTagName("li");
var mli=document.getElementById("main"+m).getElementsByTagName("ul");
for(i=0;i<tli.length;i++){
tli[i].className=i==n?"hover":"";
mli[i].style.display=i==n?"block":"none";
}
}
//-->
</script>
</head>
<body>
<br />
<br />
<!--第一种形式-->
<div id="tabs0">
<ul class="menu0" id="menu0">
<li onclick="setTab(0,0)" class="hover">标签1</li>
<li onclick="setTab(0,1)">标签2</li>
<li onclick="setTab(0,2)">标签3</li>
<li onclick="setTab(0,3)">标签4</li>
</ul>
<div class="main" id="main0">
<ul class="block"><li>内容1</li></ul>
<ul><li>内容2</li></ul>
<ul><li>内容3</li></ul>
<ul><li>内容4</li></ul>
</div>
</div>
</body>
</html>
追问
不是我说的那种呀。我的意思是那种一个页面放四部分内容,四个按钮是换内容的,现在我已经做出来了,但是我想在家四个链接,四个在上面,四个在下面,点下面链接时候就相当于点上面的链接。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式