之前添加 javascript吗?
这段代码我应该将此代码放在正文的底部,它位于条件注释中。
<!--[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]-->
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
条件注释使用普通注释的语法:
。这就是为什么不理解它们的浏览器会忽略它们。所以它们可以放在任何允许正常评论的地方。以及
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 thescript
element is allowed to be child of thebody
element.So you can put that conditional comment at the bottom in your
body
element.是的。条件注释不必位于 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
您可以将该代码放入
标记中,它将起作用。
但它可以去任何地方。
You can put that code in the
<head>
tag and it will work.But it can go anywhere.
这行得通吗?
Could this work?