模态手风琴
这适用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用对加载的依赖,如下所示:
您正在加载 DOM 后加载内容。因此,您可以在调用 hide() 命令后加载内容。
这在 IE 中完美运行: http://jsfiddle.net/JVtyv/11/
Try using dependency on your loads like this:
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/