简体   繁体   English

填充下拉菜单列表

[英]populate a drop down menu list

I have the following [fiddle][1]. 我有以下[小提琴] [1]。 I am trying to achieve two things & I have fallen at the first hurdle. 我正在努力实现两件事,但我首先遇到了困难。

I want to have a drop down menu that when hovered over display a list of regions. 我想要一个下拉菜单,将鼠标悬停在该菜单上可以显示区域列表。 The hover over part works however none of the regions are listed. 悬停在零件上有效,但是未列出任何区域。 I think its to do with the code below. 我认为这与下面的代码有关。 However I'm not sure what is wrong? 但是我不确定什么是错的? In my actual project I use an AJAX call to populate the menu but would like to know what is wrong with the code below? 在我的实际项目中,我使用AJAX调用填充菜单,但想知道以下代码有什么问题?

The end goal is where one of the regions is clicked on a javascript function will be called 最终目标是在javascript函数上单击区域之一的位置将被称为

 $(document).ready(function () { var $region = $('#regionList'); $region.append('<li><a>Europe</a></li>'); $region.append('<li><a>Japan</a></li>'); $region.append('<li><a>North America</a></li>'); }) 
  /* Dropdown Button */ .dropbtn { background-color: #9FACEC; color: white; padding: 16px; font-size: 16px; border: none; } /* The container <div> - needed to position the dropdown content */ .dropdown { position: relative; display: inline-block; } /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } /* Links inside the dropdown */ .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } /* Change color of dropdown links on hover */ .dropdown-content a:hover {background-color: #ddd;} /* Show the dropdown menu on hover */ .dropdown:hover .dropdown-content {display: block;} /* Change the background color of the dropdown button when the dropdown content is shown */ .dropdown:hover .dropbtn {background-color: #4C66E9;} 
 <div class="dropdown"> <button class="dropbtn">Regions</button> <div class="dropdown-content"> <ul id="regionList"></ul> </div> </div> 

jQuery is not defined, you'll need to include jQuery if you want to use $. jQuery未定义,如果要使用$,则需要​​包括jQuery。

$ is not defined

http://jsfiddle.net/d2v7fLpj/ http://jsfiddle.net/d2v7fLpj/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM