jQuery addClass 链接

发布于 2025-01-07 01:05:19 字数 298 浏览 1 评论 0原文

我使用以下代码来显示列表中的隐藏元素。当我第一次调用这些函数时,它们工作得很好,第二次围绕类隐藏人员不再添加。我不明白为什么

使用 jquery 效果不是一个选项,我有这么多元素,它只会阻塞页面。我有这些类来使用 css 动画添加淡出效果

http://jsfiddle.net/deerua/JB39j/9 /

请参阅示例.. 切换不同的状态,两次进入同一状态是行不通的,因为第二次无法添加隐藏人类:/

I use the following code to show hide elements in a list. They work just fine when i call the functions the first time, second time arround the class hidden-person doesn;t get added anymore. I cannot understand why

Using jquery effects is not an option i have so many elements it just blocks the page. I have those classes to add fadeout effect with css animations

http://jsfiddle.net/deerua/JB39j/9/

See the example.. switch through the different states, it will not work to go in the same state twice because it fails to add the class hidden-person the second time around :/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风疏影 2025-01-14 01:05:19
    $senator.removeClass('hide-person hidden-person');
    $deputy.addClass('hide-person');
    setTimeout(function(){
        $deputy.addClass('hidden-person');
    }, 1000);

我用 setTimeout() 修复了它。仍然好奇为什么我写的第一个代码不起作用:/

    $senator.removeClass('hide-person hidden-person');
    $deputy.addClass('hide-person');
    setTimeout(function(){
        $deputy.addClass('hidden-person');
    }, 1000);

I fixed it with a setTimeout(). Still curious why the first code i wrote doesn't work :/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文