模态手风琴

发布于 2024-12-12 16:13:24 字数 716 浏览 2 评论 0原文

适用于 Firefox,但不适用于 Internet Explorer。单击其中一张图像,就会弹出窗口。

大多数弹出窗口里面都有一个手风琴,但它不起作用。

$('#Dynamic #accordion li').children('span').hide();
    $('#Dynamic #accordion li').click(function (event) {
        event.preventDefault();
        $('#Dynamic #accordion li').children('span').slideUp(0);
        $('#Dynamic #accordion li').each(function () {
            if ($(this).attr('rel')!='') {
                $(this).removeClass('over').addClass('idle');
            }
        });

        $(this).children('span').slideDown(0);
        $(this).removeClass('idle').addClass('over');       

        return false;
    });

This works in Firefox but not in Internet Explorer. Click one of the images and the pop up happens.

Inside most of the pop ups is an accordion and it doesn't work.

$('#Dynamic #accordion li').children('span').hide();
    $('#Dynamic #accordion li').click(function (event) {
        event.preventDefault();
        $('#Dynamic #accordion li').children('span').slideUp(0);
        $('#Dynamic #accordion li').each(function () {
            if ($(this).attr('rel')!='') {
                $(this).removeClass('over').addClass('idle');
            }
        });

        $(this).children('span').slideDown(0);
        $(this).removeClass('idle').addClass('over');       

        return false;
    });

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

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

发布评论

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

评论(1

薄荷港 2024-12-19 16:13:25

尝试使用对加载的依赖,如下所示:

$('#result').load('MODALCONTENTFILE.html', function() {
      $('#result').load('ACCORDIAN.html');
});

您正在加载 DOM 后加载内容。因此,您可以在调用 hide() 命令后加载内容。

这在 IE 中完美运行: http://jsfiddle.net/JVtyv/11/

Try using dependency on your loads like this:

$('#result').load('MODALCONTENTFILE.html', function() {
      $('#result').load('ACCORDIAN.html');
});

You are loading the content after the DOM has been loaded. So you load the content in after the hide() command has been called.

This works flawless in IE: http://jsfiddle.net/JVtyv/11/

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