次のコードで 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 出力に影響しますか?
ところで、 http: //ckeditor.com/download からダウンロードできる ckeditor バージョン 4 を使用しています 。