站点在包括 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 其余部分都可以正常工作。有时当我转到其中一个文章页面时,它需要永远加载,有时会说由于脚本运行时间长而无法加载。有时它不会说是什么脚本导致了问题,有时它说它是 jquery 库脚本 - 但是当我单击停止脚本按钮时,页面加载正常并且 jquery 加载正常。