css +javascript 模仿select效果代碼

來源:互聯網
上載者:User

<style type="text/css">

#mainbox{
 width:84px;
 background-image:url(e_pic/select.jpg);
 background-repeat:no-repeat;
 font-size:12px;
 }
#box0{
 width:63px;
 height:28px; 
 float:left;
 padding-top:7px;
 padding-left:7px;
}
#box1{
 width:10px;
 height:28px;
 cursor:pointer; 
 float:left;
 text-align:center;
 padding-top:2px;
}
#items{
 border:1px solid black;
 width:78px;
 display:none;
}
#box3{
 width:83px;
 /*border-bottom:1px solid green;
 border-left:1px solid green;
 border-right:1px solid green; 
*/
 padding-left:4px;
}
.over{
 background-color:#11586E;
 font-weight:bold;
 color:#FFF;
 /*border-top:1px dotted black;
 border-bottom:1px dotted black;*/
 cursor:pointer;
}
</style>
<script type="text/javascript" defer>
var oDiv0=document.getElementById("box0");
var oDiv1=document.getElementById("box1");
var oDiv=document.getElementById("items");
oDiv1.onclick=function(){
oDiv.style.display=oDiv.style.display=="block"?"none":"block";
show();
}
function hide(obj){
var obj=obj;
obj.parentNode.style.display="none";
}
function show(){
for(var i=0;i<oDiv.childNodes.length;i++){
oDiv.childNodes[i].onmouseover=function(){
this.className="over";
}
oDiv.childNodes[i].onmouseout=function(){
this.className="";
}
oDiv.childNodes[i].onclick=function(){
oDiv0.innerHTML=this.innerHTML;
hide(this);
if(oDiv0.innerText.indexOf("vincent")!=-1){
window.open("http://www.111cn.net/vincent","","");
}
}
}
}
</script>
<body>
<div id="mainbox">
<div id="box0"></div>
<div id="box1"></div>
<div id="items" >
 <div id="box3">湖北</div>
 <div id="box3">網頁網頁</div>
 <div id="box3">孝感</div>
 <div id="box3">枝江</div>
 <div id="box3">漢川</div>
 <div id="box3">還有</div>
    <div id="box3">asp教程</div>
 
</div>
</div>
<!---->
</body>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.