gpt4 book ai didi

javascript - 填充下拉菜单列表

转载 作者:行者123 更新时间:2023-12-03 01:34:26 25 4
gpt4 key购买 nike

我有以下[ fiddle ][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>

最佳答案

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

$ is not defined

http://jsfiddle.net/d2v7fLpj/

关于javascript - 填充下拉菜单列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51136887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com