gpt4 book ai didi

javascript - 点击任何 li 项目后 ul li 下拉菜单不会显示 li 项目

转载 作者:行者123 更新时间:2023-12-02 16:36:47 26 4
gpt4 key购买 nike

代码在这里:http://jsfiddle.net/C5mTf/49/我不知道为什么。下面的代码有问题吗?

$("#menu").on('click','li',function (){
var current = $(this).text();
$('li.top').text('Sort: ' + current);
$('.item').hide();
});

最佳答案

工作代码在这里:

http://jsfiddle.net/C5mTf/55/

<小时/>
$( document ).ready(function(){
var first = $(this).find("li").eq(1);
$('li.top').text('Sort: ' + first.text());

$(".top").on("click mouseover", function(){
$('.item').show();
});

$("#menu").on('click', '.item', function(){
$('li.top').text('Sort: ' + $(this).text());
$('.item').hide();
});
});
<小时/>

关于javascript - 点击任何 li 项目后 ul li 下拉菜单不会显示 li 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27864096/

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