gpt4 book ai didi

jquery - 简单的 JQuery 逻辑

转载 作者:行者123 更新时间:2023-12-01 01:46:44 24 4
gpt4 key购买 nike

我想我已经把自己逼到了墙角,而且不知道如何后退。我真的只需要让每个 div 分别关闭 onclick 以及关闭所有选项。

http://jsfiddle.net/7U9QY/4/

$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});

$(function() {
$('.bar').click(function() {
$('.full').toggle(600);
});

});

最佳答案

Fiddle Demo

$(function () {
$('.bar').click(function () {
$(this).closest('a').next().next().toggle(600);
});
});

<小时/>查找最接近的 a 标记,然后查找 下一个 元素和 toggle<小时/> .closest()

Description: For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.

.next()

this keyword

关于jquery - 简单的 JQuery 逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21718564/

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