简单的 jquery $(this).next() 在 IE 中不起作用

发布于 2024-11-18 22:38:48 字数 483 浏览 4 评论 0 原文

我有这个标记

<h2>Title</h2>
<div class="info-content">
<p>some code in here too</p>
</div>

和这个 jquery

(function($) { 
    $(".info-content").hide(); 
    $("h2").click(function(){
        $(this).next().slideToggle("normal");
    });
})(jQuery);

,在除 IE6+ 之外的任何浏览器中,它可以切换 .info-content 的打开和关闭。

有什么想法为什么这在 IE 中不起作用吗?我假设它很简单,但我已经尝试弄清楚它有一段时间了。

任何帮助都会很棒,

谢谢。

I have this markup

<h2>Title</h2>
<div class="info-content">
<p>some code in here too</p>
</div>

and this jquery

(function($) { 
    $(".info-content").hide(); 
    $("h2").click(function(){
        $(this).next().slideToggle("normal");
    });
})(jQuery);

which, in any browser apart from IE6+, toggles the .info-content open and closed.

Any ideas why this wouldn't work in IE? I'm assuming its something quite simple but I've been trying to figure it out for a while now.

Any help would be great,

Thanks.

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

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

发布评论

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

评论(2

风透绣罗衣 2024-11-25 22:38:48

next() 可能会返回一个文本节点。

尝试 $(this).nextAll("p:first")

next() might be returning a text node.

Try $(this).nextAll("p:first")

伏妖词 2024-11-25 22:38:48

或者你可以做

$(this).find('info-content').slideToggle("normal);

or you can do

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