`
yjgyjg4
  • 浏览: 116144 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

树形下拉

阅读更多
<!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=utf-8" />
<title>sample</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
	function onclickChange(obj,index){
		document.getElementById(obj).style.fontWeight='bold';
		document.getElementById(obj).style.color='#D07B02'; 
		for(i=1; i<=6; i++){
			if(i != index){
				document.getElementById('tar'+i).style.fontWeight='';
				document.getElementById('tar'+i).style.color='#000000';
			}
		}
	}
//-->
</SCRIPT>
<style type="text/css">
* {
	margin:0;
	padding:0;
	list-style:none;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin:2px;
}

a:link {
	color: #000000;
	text-decoration: none
}

a:visited {
	color: #000000;
	text-decoration: none
}

a:hover {
	color: #000000;
	text-decoration: underline;
}

#basic-accordian{
	border:1px solid #a5a576; 边框颜色
	padding:5px;
	width:170px;
	position:absolute;
	left:50%;
	top:50%;
	margin-left:-175px;
	z-index:2;
	margin-top:-100px;
}

.accordion_headings{
	padding:5px;
	background:#ffe89c;
	color:#010102;
	border:1px solid #a5a576;
	cursor:pointer;
	font-weight:bold;
}

.accordion_headings:hover{
	background:#feb24b;
}

.accordion_child{
	padding:8px;
	background:#ffffe7;
}

.header_highlight{
	background:#feb24b;
}

</style>
<script type="text/javascript" src="accordian.pack.js"></script>
</head>
<body onload="new Accordian('basic-accordian',5,'header_highlight');" topmargin="0">
<div id="basic-accordian" style="left: 180px; top: 104px" > 
  <!--Parent of the Accordion-->
  <!--Start of each accordion item-->
  <div id="test-header" class="accordion_headings header_highlight" >Home</div><!--Heading of the accordion ( clicked to show n hide ) -->
  
  <!--Prefix of heading (the DIV above this) and content (the DIV below this) to be same... eg. foo-header & foo-content-->
  
  <div id="test-content"><!--DIV which show/hide on click of header-->
  
  	<!--This DIV is for inline styling like padding...-->
    <div class="accordion_child">
    	
      <a href="#" onclick="onclickChange('tar1',1)"><font id="tar1">Content1</font></a>
     <br><br>
    <a href="#" onclick="onclickChange('tar2',2)"><font id="tar2">Content2</font></a>
    </div>
    
  </div>
<!--End of each accordion item--> 

<!--Start of each accordion item-->
  <div id="test1-header" class="accordion_headings" >About Us</div><!--Heading of the accordion ( clicked to show n hide ) -->
  
  <!--Prefix of heading (the DIV above this) and content (the DIV below this) to be same... eg. foo-header & foo-content-->
  
  <div id="test1-content"><!--DIV which show/hide on click of header-->
  
  	<!--This DIV is for inline styling like padding...-->
      <div class="accordion_child">
    <a href="#" onclick="onclickChange('tar3',3)"><font id="tar3">Content1</font></a>
		<br><br>
    <a href="#" onclick="onclickChange('tar4',4)"><font id="tar4">Content2</font></a>
    </div>
    
  </div>
<!--End of each accordion item--> 
<!--Start of each accordion item-->
  <div id="test2-header" class="accordion_headings" >Downloads</div><!--Heading of the accordion ( clicked to show n hide ) -->
  
  <!--Prefix of heading (the DIV above this) and content (the DIV below this) to be same... eg. foo-header & foo-content-->
  
  <div id="test2-content"><!--DIV which show/hide on click of header-->
  	<!--This DIV is for inline styling like padding...-->
      <div class="accordion_child">
    <a href="#" onclick="onclickChange('tar5',5)"><font id="tar5">Content1</font></a>
		<br><br>
    <a href="#" onclick="onclickChange('tar6',6)"><font id="tar6">Content2</font></a>
    </div>
  </div>
<!--End of each accordion item--> 
</div><!--End of accordion parent-->
</body>
</html>
分享到:
评论
1 楼 jsjxqjy 2009-12-15  
LZ英文很强!js也很强

相关推荐

Global site tag (gtag.js) - Google Analytics