当我右键单击使用以下代码打开 test.html 时,我遇到了一个奇怪的 IE 问题
<!DOCTYPE html>
<!--
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
<meta charset="utf-8">
<title>API Usage — CKEditor Sample</title>
<script src="../ckeditor.js"></script>
</head>
<body>
<textarea cols="100" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script>
// Replace the <textarea id="editor1"> with an CKEditor instance.
CKEDITOR.replace( 'editor1');
</script>
</body>
</html>
在 ckeditor 中选择文本时,我没有黑色边框。但是,当我将完全相同的代码放入 text.php 并通过 WAMP 访问时,我会在所选文本周围出现黑色边框。这个问题只存在于 IE 中,对于 chrome 和 firefox 有效。
Apache 或 PHP 标头会影响 IE 输出吗?
顺便说一句,我使用的是 ckeditor 版本 4,可以从http://ckeditor.com/download下载 。