我们可以在 IE 条件注释中的

之前添加 javascript吗?
发布于 2024-08-23 20:48:23 字数 199 浏览 3 评论 0原文

这段代码我应该将此代码放在正文的底部,它位于条件注释中。

<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta2)/IE7.js"></script>
<![endif]-->
原文

This code should i place this code at bottom of body it's in conditional comment.

<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta2)/IE7.js"></script>
<![endif]-->

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

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

发布评论

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

评论(4

永不分离 2024-08-30 20:48:23

条件注释使用普通注释的语法:。这就是为什么不理解它们的浏览器会忽略它们。所以它们可以放在任何允许正常评论的地方。以及 script 元素 允许成为 body 元素

因此,您可以将该条件注释放在 body 元素的底部。

Conditional comments use the syntax of normal comments: <!--[if …]>…<![endif]-->. That’s why browsers that don’t understand them ignore them. So they can be put wherever normal comments are allowed. And the script element is allowed to be child of the body element.

So you can put that conditional comment at the bottom in your body element.

万劫不复 2024-08-30 20:48:23

是的。条件注释不必位于 head 标签中。

http://msdn.microsoft.com/en-us /library/ms537512(VS.85).aspx

Yes. Conditional comments do not have to be in the head tag.

http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx

半衾梦 2024-08-30 20:48:23

您可以将该代码放入 标记中,它将起作用。

但它可以去任何地方。

You can put that code in the <head> tag and it will work.

But it can go anywhere.

腻橙味 2024-08-30 20:48:23
       <!--[if lte Gecko 3.1]><script type="text/javascript">    
Cufon.replace('.cufonised p, H2');
    </script>  <![endif]-->

这行得通吗?

       <!--[if lte Gecko 3.1]><script type="text/javascript">    
Cufon.replace('.cufonised p, H2');
    </script>  <![endif]-->

Could this work?

~没有更多了~

关于作者

梦与时光遇

暂无简介

0 文章
0 评论
25 人气
更多

推荐作者

苦中寻乐

文章 0 评论 0

lueluelue

文章 0 评论 0

嗼ふ静

文章 0 评论 0

王权女流氓

文章 0 评论 0

与花如笺

文章 0 评论 0

残酷

文章 0 评论 0

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