jQuery SlideToggle 向父级
  • 添加神秘边距
  • 发布于 2024-12-10 05:08:46 字数 841 浏览 0 评论 0原文

    我有一个包含 5 个

  • 项的
      。每个列表项都有一个标题和一个段落。我使用 slideToggle() 在您单击标题时显示该段落。
  • 但是,当您第二次单击标题时,slideToggle() 会隐藏该段落,但会在

  • 中添加一些空白。我点击标题切换段落的次数越多,出现的空白就越多。
  • jQuery:

    $(document).ready(function(){
            $('#content ul li h3').click(function(){
                $(this).next('p').slideToggle('fast');
            }) 
        });
    

    我的CSS:

    #content ul li p {
                display:none;
            }
    

    我的HTML:

    <div id="content"> 
      <ul class="faq">
            <li>
                <h3>Headline</h3>
                <p>Paragraph Text<br>More text...</p>
            </li>
      </ul>
    </div>
    

    I've got a <ul> with 5 <li> items. Each list item has a headline and a paragraph. I'm using slideToggle() to display the paragraph when you click the headline.

    But, when you click the headline a second time the slideToggle() hides the paragraph but adds some white space to the <li>. The more I click the headline to toggle the paragraph, the more white space appears.

    The jQuery:

    $(document).ready(function(){
            $('#content ul li h3').click(function(){
                $(this).next('p').slideToggle('fast');
            }) 
        });
    

    My CSS:

    #content ul li p {
                display:none;
            }
    

    My HTML:

    <div id="content"> 
      <ul class="faq">
            <li>
                <h3>Headline</h3>
                <p>Paragraph Text<br>More text...</p>
            </li>
      </ul>
    </div>
    

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

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

    发布评论

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

    评论(1

    冷默言语 2024-12-17 05:08:46

    麻烦来了。

    在我的全局样式表中,我有 .faq li { display:inline; 一旦我删除了这个,

    一切就都正常工作了。

    Here was the trouble..

    In my Global style sheet I had .faq li { display:inline; }

    Once I removed this everything worked exactly as it should.

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