我有一個Umbraco 5 MVC3項目,我發現那裏有空白處。在調查時,我發現我的HTML在firefox web developer工具中「查看生成的源代碼」時顯得非常糟糕。例如,它刪除我的doctype聲明並將我的元標記和內容移出頭部。簡化代碼:我的HTML標籤被篡改
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>@ViewBag.Title</title>
<link rel="stylesheet" href="@Url.Content("~/Content/Styles/style.css")"/>
</head>
<body id="" class="default">
<div id="wrapper">
<header id="banner" class="body">
<a class="ir logo" href="/"><h1>Christian </h1></a>
<ul class="share">
<li id="facebook"><a class="ir" href="http://www.facebook.com/[email protected]">Facebook</a></li>
<li id="twitter"><a class="ir" href="http://twitter.com/share?text=Christian">Twitter</a></li>
</ul>
@Html.Partial("nav")
</header>
<section id="content" class="body">
@RenderBody()
</section>
</div>
<script src="@Url.Content("~/Scripts/plugins.js")"></script>
<script src="@Url.Content("~/Scripts/script.js")"></script>
</body>
</html>
和輸出是這樣開始的
<html class="no-js" lang="en"><head></head><body id="" class="default">
非常感謝男人清理那個。這是一個奇怪的問題。 – 2012-04-05 09:12:03