【问题标题】:Ckeditor in reviews not showing html in frontend Opencart评论中的 Ckeditor 未在前端 Opencart 中显示 html
【发布时间】:2013-10-24 19:52:21
【问题描述】:

评论中的 Ckeditor 未在前端 Opencart 中显示 html!

我是从 /admin/view/template/catalog/review_form.tpl 做的

<td><textarea name="text" cols="60" rows="8"><?php echo $text; ?></textarea>

已添加:id="description1"

<td><textarea name="text" cols="60" rows="8" id="description1"><?php echo $text; ?></textarea>

&lt;?php echo $footer; ?&gt;之前

我添加了

<script type="text/javascript" src="view/javascript/ckeditor/ckeditor.js"></script>
<script type="text/javascript"><!--
CKEDITOR.replace('description1', {
 filebrowserBrowseUrl: 'index.php?route=common/filemanager&token=<?php echo $token; ?>',
 filebrowserImageBrowseUrl: 'index.php?route=common/filemanager&token=<?php echo $token; ?>',
 filebrowserFlashBrowseUrl: 'index.php?route=common/filemanager&token=<?php echo $token; ?>',
 filebrowserUploadUrl: 'index.php?route=common/filemanager&token=<?php echo $token; ?>',
 filebrowserImageUploadUrl: 'index.php?route=common/filemanager&token=<?php echo $token; ?>',
 filebrowserFlashUploadUrl: 'index.php?route=common/filemanager&token=<?php echo $token; ?>'
});
//--></script>

但问题在于前端显示的是纯html代码

将链接或图像插入为google 正在显示&lt;a href="http://www.google.com"&gt;google&lt;/a&gt;

有什么帮助吗?

谢谢

25/10/13 编辑

我做到了

<td><textarea name="text" cols="60" rows="8" id="description1"><?=htmlentities($text)?></textarea>

但没有成功

【问题讨论】:

    标签: php html ckeditor opencart review


    【解决方案1】:

    您应该对要放入编辑器的文本进行 html 编码:

    <textarea name="text" cols="60" rows="8"><?=htmlentities($text)?></textarea>
    

    【讨论】:

    • 谢谢奥列格,但我找不到办法!有什么帮助吗?
    • 你必须使用htmlentities()函数
    • Refael,抱歉,我需要至少 2k 声望才能审核建议的编辑。因此,您可以将更改添加为问题的更新。
    • 你不尝试用javascript函数insertHtml()填充它吗? docs.cksource.com/ckeditor_api/symbols/…
    • CKEDITOR.instances.editor1.insertHtml( '&lt;p&gt;This is a new paragraph.&lt;/p&gt;' );
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2015-05-24
    • 2019-03-10
    • 1970-01-01
    • 2014-09-09
    • 2017-01-26
    • 2011-04-15
    • 1970-01-01
    相关资源
    最近更新 更多