求助javascript脚本代码,根据url条件判断,控制div层的显示 100
http://zhidao.baidu.com/question/114622016.html?fr=qrl&cid=870&index=1&fr2=query上面有个例...
http://zhidao.baidu.com/question/114622016.html?fr=qrl&cid=870&index=1&fr2=query
上面有个例子 但是我不会用 最好写的详细些 比如怎么调用 ,我只需要判断网址显示相应内容就行了 比如有100个网址 我只需要对应网址显示相应内容就行,最好都是写在一个js文件中的 包括要显示的内容也是写在文件中的 那样最好了 谢谢各位了 如果成功了 还会给加高分 QQ1833828709 在线等 展开
上面有个例子 但是我不会用 最好写的详细些 比如怎么调用 ,我只需要判断网址显示相应内容就行了 比如有100个网址 我只需要对应网址显示相应内容就行,最好都是写在一个js文件中的 包括要显示的内容也是写在文件中的 那样最好了 谢谢各位了 如果成功了 还会给加高分 QQ1833828709 在线等 展开
展开全部
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
a{
cursor:pointer;
margin-left:30px;}
div{
width:200px;
height:50px;}
</style>
<script type="text/javascript">
var no1,no2;
function init(){
no1=document.getElementById("NO1");
no2=document.getElementById("NO2");
no1.style.display="none";
no2.style.display="none";
}
function opendiv(num){
init();
document.getElementById("NO"+num).style.display="block";
}
</script>
</head>
<body onload="javascript:init()">
<div><a onclick="opendiv(1)">div1</a><a onclick="opendiv(2)">div2</a></div>
<div id="NO1">这是第一个层</div>
<div id="NO2">这是第二个层</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
a{
cursor:pointer;
margin-left:30px;}
div{
width:200px;
height:50px;}
</style>
<script type="text/javascript">
var no1,no2;
function init(){
no1=document.getElementById("NO1");
no2=document.getElementById("NO2");
no1.style.display="none";
no2.style.display="none";
}
function opendiv(num){
init();
document.getElementById("NO"+num).style.display="block";
}
</script>
</head>
<body onload="javascript:init()">
<div><a onclick="opendiv(1)">div1</a><a onclick="opendiv(2)">div2</a></div>
<div id="NO1">这是第一个层</div>
<div id="NO2">这是第二个层</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在一个url下默认div1.style.display=block,div2.style.display=none;
在另一个url下默认div2.style.display=block,div1.style.display=none;
在另一个url下默认div2.style.display=block,div1.style.display=none;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function disPlay(){
var b1 = document.getElementById("box1");
var b2 = document.getElementById("box2");
if(window.location.href = ""){
b1.style.display = "none";
b2.style.display = "block"
}
else{
b1.style.display = "block";
b2.style.display = "none"
}
}
var b1 = document.getElementById("box1");
var b2 = document.getElementById("box2");
if(window.location.href = ""){
b1.style.display = "none";
b2.style.display = "block"
}
else{
b1.style.display = "block";
b2.style.display = "none"
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询