FCKeditor 2.6 编码错误导致修改的内容出现乱码的解决方法
程序员文章站
2022-03-20 15:08:41
fckeditor 2.6 的目录 editor 下有一文件 fckeditor.html。 我修改了该文件,其中有些中文字,在 ie 中打开之,发现是乱码,原来这个文件有...
fckeditor 2.6 的目录 editor 下有一文件 fckeditor.html。
我修改了该文件,其中有些中文字,在 ie 中打开之,发现是乱码,原来这个文件有问题。文件中指定了 charset 为 utf-8:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
可是文件却是以 ansi 保存的,改为以 utf-8 保存,中文不再乱码了。
顺便说一下,调用 fckeditor.html 这个编辑器的示例:
<iframe id="fckcontent" src="/fckeditor/editor/fckeditor.html?instancename=fckcontent&toolbar=default" width="780" height="360" frameborder="0" scrolling="no"></iframe>
我修改了该文件,其中有些中文字,在 ie 中打开之,发现是乱码,原来这个文件有问题。文件中指定了 charset 为 utf-8:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
可是文件却是以 ansi 保存的,改为以 utf-8 保存,中文不再乱码了。
顺便说一下,调用 fckeditor.html 这个编辑器的示例:
复制代码 代码如下:
<iframe id="fckcontent" src="/fckeditor/editor/fckeditor.html?instancename=fckcontent&toolbar=default" width="780" height="360" frameborder="0" scrolling="no"></iframe>