whitespace和Head标签显示在体内?

时间:2012-06-12 06:39:00

标签: php cakephp

我正在使用cakephp完全在法国网站上工作,但它导致文件类型编码将字符嵌入到html。所以我在记事本++中将文件类型更改为encode in utf-8。但它导致问题并给出空白和头部像这样的html体内标签 -


<meta content="IE=EmulateIE9" http-equiv="X-UA-Compatible">
<meta content="IE=EmulateIE8" http-equiv="X-UA-Compatible">
<title> : test</title>
<link rel="icon" type="image/x-icon" href="/mapubvideoRel/favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="/mapubvideoRel/favicon.ico">
<link href="/mapubvideoRel/css/main.css" type="text/css" rel="stylesheet">
<link href="/mapubvideoRel/css/helper.css" type="text/css" rel="stylesheet">
<link href="/mapubvideoRel/css/general.css" type="text/css" rel="stylesheet">
<link href="/mapubvideoRel/css/colorbox.css" type="text/css" rel="stylesheet">
<link href="/mapubvideoRel/css/App_Popup.css" type="text/css" rel="stylesheet">
<script src="/mapubvideoRel/js/jquery.js" type="text/javascript">
<script src="/mapubvideoRel/js/popup.js" type="text/javascript">
<script src="/mapubvideoRel/js/jquery.colorbox-min.js" type="text/javascript">

&#65279;

请帮忙。 感谢

2 个答案:

答案 0 :(得分:1)

你有BOM char文件。使用BOM检测程序

java:http://www.javapractices.com/topic/TopicAction.do?Id=257 [推荐] [查找并删除]

1-检查现有BOM的URL 2-从文件中删除BOM php:http://www.dotvoid.com/2010/04/detecting-utf-bom-byte-order-mark/

答案 1 :(得分:0)

我也在我的MVC6 Web应用程序中遇到了这个问题。

我已经在我的布局页面中添加了以下内容问题解决了。

<?xml version="1.0" encoding="UTF-8" ?>