页面内容未显示在资源管理器中

发布于 2024-08-30 22:05:59 字数 330 浏览 3 评论 0原文

网站的起源在这里: http://qaa.miltonfame.org/ html 和 css 通过验证测试 页面在我尝试过的所有 Mac 浏览器(Safari、Firefox、Camino)中显示良好 页面在 Windows 7 FireFox 中显示正常 在 Explorer 8 Windows 7 中(以及通过屏幕截图服务在其他资源管理器版本中)只呈现背景。查看源代码显示资源管理器正在获取内容 - 它只是没有出现在屏幕上。

不知道如何解决这个问题 - 任何建议将不胜感激。 谢谢一百万。

The beginnings of a site here:
http://qaa.miltonfame.org/
html and css pass validation tests
Page displays fine in all Mac browsers I have tried (Safari, Firefox, Camino)
Page displays fine in Windows 7 FireFox
Nothing but background renders in Explorer 8 Windows 7 (and in other Explorer versions via screenshot services.) View Source shows that Explorer is getting the content - it's just not appearing on screen.

No idea how to approach addressing this - any suggestions would REALLY be appreciated.
Thanks a million.

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

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

发布评论

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

评论(2

一页 2024-09-06 22:05:59

我的朋友,你还没有关闭 jquery 的脚本标签。我保存了本地副本并对其进行了测试 - 标签关闭后内容就会显示。

<script type="text/javascript" charset="utf-8" src="jquery-link" />

它需要是这样的:

<script type="text/javascript" charset="utf-8" src="jquery-link"></script>

干杯! :)

此外,您可能需要在底部处理一个脚本标记和元标记。

My friend, you haven't closed your script tag for jquery. I saved a local copy and tested it - the content shows up once the tag is closed.

<script type="text/javascript" charset="utf-8" src="jquery-link" />

It needs to be like this :

<script type="text/javascript" charset="utf-8" src="jquery-link"></script>

Cheers! :)

Also you've got a script tag and meta tag at the bottom that you may need to take care of.

浅笑轻吟梦一曲 2024-09-06 22:05:59

我将在黑暗中进行尝试,并说如果删除以下内容,您会取得更好的成功:

<!--[if lte IE 7]>
        <script src="/js/ie7/IE8.js" type="text/javascript"></script>
    <![endif]-->

既然您说 HTML 和 CSS 通过了,那么您几乎可以排除这种可能性。你的来源看起来并不那么复杂。剩下的就是 JavaScript,源代码中唯一特定于 IE 的内容就是这些行。

I'm going to take a shot in the dark and say that if you remove the following, you'd have better success:

<!--[if lte IE 7]>
        <script src="/js/ie7/IE8.js" type="text/javascript"></script>
    <![endif]-->

Since you say that HTML and CSS passes, you can pretty much rule that out. Your source doesn't look that complicated. That leaves JavaScript, and the only IE specific thing in your source are those lines.

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