久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      javascript怎么實(shí)現(xiàn)隱藏下拉框

      javascript實(shí)現(xiàn)隱藏下拉框效果的方法:【function moreCon(){ var backg = document.getElementById('colorChange'); var mdiv = document…】。

      javascript怎么實(shí)現(xiàn)隱藏下拉框

      本文操作環(huán)境:windows10系統(tǒng)、javascript 1.8.5、thinkpad t480電腦。

      點(diǎn)擊顯示或隱藏下拉框是工作中常見的一種效果,那么這種效果該如何實(shí)現(xiàn)呢?

      我們先來看下實(shí)現(xiàn)后的效果:

      javascript怎么實(shí)現(xiàn)隱藏下拉框

      具體實(shí)現(xiàn)代碼:

      <!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>JS點(diǎn)擊顯示或隱藏下拉框</title> <style type="text/css">     html,body,div,ul,li{padding: 0;margin: 0;}     li{list-style: none;}     a{text-decoration: none;color: #ccc;font-size: 13px;}     #top{width: 100%;background: #2D2D2D;height: 30px;}     .topli{float: left;height: 30px;line-height: 30px;}     .topli a{display:block;padding: 0 14px;height: 30px;}     .topli a:hover{background:#444;}     .more{position: absolute;top: 30px;background: #fff;display: none;border: 1px solid #c2c2c2;z-index: 999;border-top: none;}     .more a{color: #3366CC;}     .more a:hover{background: #f0f0f0;} </style> <script type="text/javascript">     function moreCon(){         var backg = document.getElementById('colorChange');  //定義變量         var mdiv = document.getElementById('moreContent');         if (mdiv.style.display=='block') {                  //if else判斷ID為moreContent的display是否為block   “==”為“等于” 為比較運(yùn)算符             mdiv.style.display='none';             backg.style.background='#2D2D2D';                //修改樣式             backg.style.color='#ccc';         }         else             {                 mdiv.style.display='block';                 backg.style.background='#fff';                 backg.style.color='#3366CC';             }     } </script> <!-- JS點(diǎn)擊顯示或隱藏下拉框 end --> </head> <body> <ul id="top">     <li class="topli"><a href="">搜索</a></li>     <li class="topli"><a href="">圖片</a></li>     <li class="topli"><a href="">地圖</a></li>     <li class="topli"><a href="">新聞</a></li>     <li class="topli">         <a href="javascript:void()" onclick="moreCon()" id="colorChange">

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號