填充下拉菜单列表

时间:2018-07-02 13:02:06

标签: javascript jquery html

我有以下[小提琴] [1]。我正在努力实现两件事,但我首先遇到了困难。

我想要一个下拉菜单,将其悬停在上方时会显示区域列表。悬停在零件上有效,但是未列出任何区域。我认为这与下面的代码有关。但是我不确定什么是错的?在我的实际项目中,我使用AJAX调用来填充菜单,但想知道下面的代码出了什么问题?

最终目标是在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>

1 个答案:

答案 0 :(得分:1)

未定义jQuery,如果要使用$,则需要​​包括jQuery。

$ is not defined

http://jsfiddle.net/d2v7fLpj/