从HTML下拉菜单中访问选项卡

时间:2016-03-08 07:10:48

标签: html drop-down-menu tabs

我已成功使用HTML制作下拉菜单。问题是我不知道如何从下拉菜单移动到页面。这是我的一段代码:

 <div class="dropdown">
                     <a href="#class="dropbtn"> Events</a>
                           <div class="dropdown-content">
                                   <a href="#"> Event1 </a>
                                   <a href="#"> Event2 </a>
                                   <a href="#"> Event3 </a>
                           </div> 
 </div>

我尝试在div中使用id,但它无法正常工作。

1 个答案:

答案 0 :(得分:0)

Try Like this: 

<div class="dropdown">
                     <a href="#class="dropbtn"> Events</a>
                           <div class="dropdown-content">
                                   <a href="https://www.google.co.in/"> Event1 </a>
                                   <a href="https://in.yahoo.com/
"> Event2 </a>
                                   <a href="http://www.rediff.com/"> Event3 </a>
                           </div> 
 </div>