关于ckeditor无法显示我在数据库读出的内容

WBOY
Release: 2016-06-23 14:39:23
Original
1649 people have browsed it

我想在ckeditor里面显示我在数据库读出的内容,但是加载ckeditor编辑器失败了,chrome报错:Uncaught TypeError: Cannot call method 'equals' of undefined 。但是如果我不用显示内容的时候,直接加载编辑器是可以成功的,这是怎么回事了?


回复讨论(解决方案)

上代码
水平低,猜不到~~

上代码
水平低,猜不到~~

    <span style="float:left;"><textarea id="content" name="content">{$vo.content}</textarea></span><span class="require-field">*</span>	<script type="text/javascript">	//<![CDATA[	CKEDITOR.replace('content',{width:600});	//]]>	</script>
Copy after login

以下是我从数据库读出来的内容,这些内容是通过ckeditor编辑以后传进数据库的
<p style="text-align: center;">	<u><strong><em><span style="font-size:26px;">21212</span></em></strong></u></p><p>	<u><strong><em><span style="font-size:26px;">213131312121</span>121212321</em></strong></u></p><ol>	<li>		<span style="font-size:36px;">232123213<br />		</span></li></ol>
Copy after login

输入一些简单字符入库并读取是否正常,如果正常,可能是录入内容的问题,ckeditor编辑器好像已对内容的HTML标签做了处理,入库的时候就不需要再做处理了。

如果录入简单字符入库读取也出错,看看是不是ckeditor配置上的问题。

输入一些简单字符入库并读取是否正常,如果正常,可能是录入内容的问题,ckeditor编辑器好像已对内容的HTML标签做了处理,入库的时候就不需要再做处理了。

如果录入简单字符入库读取也出错,看看是不是ckeditor配置上的问题。
????里?出?的?容用
htmlspecialchars($,ENT_QUOTES,'UTF-8') //??HTML??,且中文不??
htmlspecialchars_decode($,ENT_QUOTES) //把HTML??反向??
??一下就行了

具体看下editor配置是否有问题,按照你这样显示数据,是没有问题。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template