gpt4 book ai didi

jquery - zrssfeed JQUery 在 IE 9 上崩溃,强制关闭

转载 作者:行者123 更新时间:2023-12-01 00:23:47 24 4
gpt4 key购买 nike

ZRSSFeed JQuery 如果独立工作正常,但一旦我将其与 JQuery 选项卡一起放入 iFrame 中,它就会在 IE 9 中崩溃。 (我以为iFrame不应该和JQuery冲突?)

您可以在这里查看: http://jsfiddle.net/VMfXr/

只需将 URL 复制并粘贴到 IE 中,它就会强制我的 IE 9 关闭。如果有任何帮助,请不胜感激。

或以下代码:

<div class="widget_container"> <div class="widget_container_inner">
<ul class='tabs'>
<li><a href="#tab1">Tab1</a></li>
<li><a href="#tab2">Tab2</a></li>
<li><a href="#tab3">JQuery Blog</a></li>
</ul>
<div id='tab1'>
<Script>window.console && console.log('tab1');</script></div>
<div id='tab2'>
<Script>window.console && console.log('tab2');</script>
</div>
<div id='tab3'> <Script>window.console && console.log('tab3');</script>
<iFrame src="http://www.iframeURL.com" style="width:320px; height:330px; overflow:hidden" frameborder="0" scrolling="no"></iFrame>
</div>
</div> </div>

<script type="text/javascript">
jQuery.noConflict();
(function($) {
jQuery(document).ready(function($) {
jQuery('ul.tabs').each(function(){
var $active, $content, $links = $(this).find('a');
$active = $($links.filter('[href="'+location.hash+'"]')[0] || $links[0]);
$active.addClass('active');
$content = $($active.attr('href'));

$links.not($active).each(function () {
$($(this).attr('href')).hide(); });

jQuery(this).on('click', 'a', function(e){
$active.removeClass('active');
$content.hide();
$active = $(this);
$content = $($(this).attr('href'));
$active.addClass('active');
$content.show();
e.preventDefault();
});
});
});
})(jQuery); </script>

谢谢

最佳答案

这是您的 jquery.vticker.js 文件在隐藏时在 iframe 中运行的结果。这似乎是最近更新的 IE9 中的一个错误。发生的情况是 IE 发生访问冲突,这可能是由于垃圾收集器无法在隐藏的 i 帧上正常工作造成的。无论如何,要修复该错误,您可以从 http://www.sp.edu.sg/schools/dmit/widgets/ticker/blog/blog_widget_dbit.html 引用的 jquery.vticker.js 中注释掉以下代码行

obj.children('ul').children('li').each(function() {
$(this).height(maxHeight);
});

obj.height(maxHeight * options.showItems);

这似乎与 Microsoft KB2761451 有关,该更新是 2012 年 11 月 13 日发布的安全更新。

关于jquery - zrssfeed JQUery 在 IE 9 上崩溃,强制关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13450190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com