<!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>
body{
margin:20;
padding:0;
font-size:12px; color:#333;
font-family:Arial, Helvetica, sans-serif;
background:#FFF url(../images/bg.jpg) top center repeat-x;
line-height:1.8;}

a:link {color: #333; text-decoration:none;}
a:visited {color: #333; text-decoration:none;}
a:hover {color: #333; text-decoration:none;}
a:active {color: #333; text-decoration:none;}
.cRed,a.cRed:link,a.cRed:visited{ color:#DA0000; }
.fB {font-weight: bold;}
</style>
<script language="javascript">
var lastClick;
function swap(id){
 var lc=document.getElementById(id);
 if(lc){
  if(lastClick){
   lastClick.style.display = 'none';
  }
  lastClick = lc;
  if(lc.style.display =='block'){
   lc.style.display = 'none';
  }else{
   lc.style.display = 'block';
  }
 }   
}
</script>
</head>

<body>
<a href="javascript:swap('ABOUT');" class="fB cBlack">About us</a><br />
<div style="display: none; padding-left: 20px;" >ABOUT US</a></div>

<a href="javascript:swap('JOB');" class="fB cBlack">Join us</a><br />
<div style="display: none; padding-left: 20px;" >JOIN US</a></div>

<a href="javascript:swap('CONTACT');" class="fB cBlack">Contact us</a><br />
<div style="display: none; padding-left: 20px;" >CONTACT US</a></div>
</body>
</html>

相关文章:

  • 2022-12-23
  • 2021-09-20
  • 2021-10-07
  • 2021-11-25
  • 2021-12-28
  • 2021-05-28
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2021-12-06
  • 2022-12-23
相关资源
相似解决方案