在IE7和IE8的IE兼容性视图中未正确加载,在所有其他浏览器中都没问题

时间:2012-07-23 20:03:52

标签: jquery internet-explorer-8 internet-explorer-7 ie8-compatibility-mode

网站在包括IE9在内的所有浏览器中正确加载/显示,但在我打开IE7和IE8的兼容性视图时却没有。在主页(http://www.adrtimes.com)上,文章,新闻和媒体列的顶部框没有加载到内容中(使用jquery加载来自另一个页面的内容) - 我无法弄清楚问题可能是什么。如果有人能够看到问题可能是什么,我将非常感谢正确方向的一点!

<script type="text/javascript">
<!--

$(function(){ 

/* Home */
/* load most recent article */
$("#modulePage11493926 #LoadRecentArticles").load("/articles/category/articles .list-journal-entry-wrapper .journal-entry-wrapper:first:not(.category-video)", function(){ 
  //callback...
  $("#LoadRecentArticles .journal-entry-wrapper").wrapAll('<div class="list-journal-entry-wrapper" />');
});

/* load most recent news */
$("#modulePage11493926 #LoadRecentHotlinks").load("/articles/category/hotlinks .list-journal-entry-wrapper .journal-entry-wrapper:first:not(.category-video)", function(){ 
  //callback...
  $("#LoadRecentHotlinks .journal-entry-wrapper").wrapAll('<div class="list-journal-entry-wrapper" />');
});

/* load most recent media */
$("#modulePage11493926 #LoadRecentVideos").load("/articles/category/media .list-journal-entry-wrapper .journal-entry-wrapper:first", function(){ 
  //callback...
  $("#LoadRecentVideos .journal-entry-wrapper").wrapAll('<div class="list-journal-entry-wrapper" />');
});


}); 
-->
</script>

奇怪的是,内容不会加载到主页上,但是在这些加载函数之前和之后的所有其余jquery都能正常工作。有时当我去其中一篇文章页面时,它需要FOREVER加载,有时说由于长时间运行的脚本它不会加载。有时它不会说什么脚本导致问题,有时它说它的jquery库脚本 - 但是当我点击停止脚本按钮时,页面加载正常并且jquery加载正常。

0 个答案:

没有答案