"http://www.w3.org/TR/html4/loose.dtd"
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title这是A页面/title
/head
body
a href="B.htm?id=show"我要连到B页面/a
/body
/html
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title这是B页面/title
script language="javascript"
function show()
{
var a=document.location.href;
//alert(a);
if(a.indexOf("id=show")==-1)
{
document.getElementById("hidden").style.display="none";
document.getElementById("show").style.display="block";
}
else
{
document.getElementById("hidden").style.display="block";
document.getElementById("show").style.display="none";
}
}
/script
/head
body onload="show()"
div id="hidden" style="display:none "
font color="red"这里是一个隐藏的层,把我显示出来吧,最好显示我的时候把下面的那个层隐藏掉/font
/div
div id="show"
font color="blue"这是一个显示的层/font
/div
/body
/html