Dreamweaver 在 Internet Explorer 中导致怪异模式

发布于 2024-11-14 13:34:11 字数 486 浏览 3 评论 0原文

我使用 Dreamweaver 开发网站。我广泛使用模板功能,因为它有助于使事情更容易保持一致性。

但是,我注意到 Dreamweaver 在 doctype 之前添加了以下代码:

<!-- InstanceBegin template="/templates/web-public-user-home.dwt" codeOutsideHTMLIsLocked="false" -->

由于显而易见的原因(即在 doctype 之前添加注释),这将我的 IE 置于 Quirks 模式。有办法解决这个问题吗?!以下是我的文档类型。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

问候,

I use Dreamweaver to develop Web sites. I use the templates feature extensively as it helps to make things easier maintaining conformance.

However, I notice that Dreamweaver adds the following code before the doctype:

<!-- InstanceBegin template="/templates/web-public-user-home.dwt" codeOutsideHTMLIsLocked="false" -->

This is throwing my IE into Quirks mode for obvious reasons (i.e. comment before the doctype). Is there a way of dealing with this?! Below is my doctype.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Regards,

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

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

发布评论

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

评论(2

酒与心事 2024-11-21 13:34:11

好吧,我明白了。

由于我正在进行大量的 IE 合规性调整,因此我使用了条件注释。但是,我在 html 标签上使用它们。原则上这没有什么问题,但是当您执行此操作时,Dreamweaver 将无法正确处理实时模板更新(它会将 Dreamweaver 特定的模板锁定代码首先放在文档类型之前,从而确保您的页面在 IE 中抛出 Quirks 模式) 。

因此,我所做的就是将条件注释系统从 html 标记中移开,而是在开始正文标记之后和结束正文标记之前立即使用它们,如下所示:

<body>
<!--[if IE 6 ]> <div id="ie" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <div id="ie" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <div id="ie" class="ie8"> <![endif]-->
<!--[if gt IE 8 ]> <div id="ie"> <![endif]-->
<!--[if !IE]><div id="not-ie"> <![endif]-->

{YOUR HTML CODE}

  </div>
</body>

这样,Dreamweaver 将 doctype 和 html 标记放在模板锁定代码之前,您生成的页面将以标准模式显示在 IE 上(一切正常)。

干杯。

Ok, I figured this out.

Because of the extensive IE-compliance tweaking I'm doing, I was using conditional comments. However, I was using them on the html tag. There's nothing wrong with this in principle but Dreamweaver won't handle your live template updates properly when you do this (It will place the Dreamweaver-specific template lock code first before the doctype, thereby ensuring that your pages will throw Quirks mode in IE).

So what I did was move my conditional comment system away from the html tag, instead using them immediately after your opening body tag and immediately before your closing body tag like so:

<body>
<!--[if IE 6 ]> <div id="ie" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <div id="ie" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <div id="ie" class="ie8"> <![endif]-->
<!--[if gt IE 8 ]> <div id="ie"> <![endif]-->
<!--[if !IE]><div id="not-ie"> <![endif]-->

{YOUR HTML CODE}

  </div>
</body>

This way, Dreamweaver places the doctype and html tag before the template lock code, and your resulting pages will appear in standards mode on IE (all things being normal).

Cheers.

赠佳期 2024-11-21 13:34:11

Dreamweaver(包括 CS6)将

<!--[if IE 8]> <html class="ie8"> <![endif]-->

!避免包含条件注释中的 标记 当您在模板代码中使用普通的未伪装的 标记时,Dreamweaver 将自动放置 after 从该模板派生的所有文件中的 标记之后,IE 不会陷入怪异模式。

Dreamweaver (incl. CS6) places the <!-- InstanceBegin template="... comment in front of the doctype tag only if it is unable to locate the opening <html> tag in your template! This happens when you forgot that tag altogether, but also when that tag is placed within conditional comments like this:

<!--[if IE 8]> <html class="ie8"> <![endif]-->

To avoid this you have to refrain from enclosing the <html> tag within conditional comments. When you use a normal undisguised <html> tag in your template code, Dreamweaver will automatically place the <!-- InstanceBegin template="... after that <html> tag in all files derived from that template and IE will not fall into quirks mode.

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