如何使用nicEdit javascript打印格式化文本作为论坛的描述?

时间:2015-07-28 07:03:19

标签: javascript php html nicedit dotproject

我的nicEdit脚本有问题。它工作得很好,你可以编辑你的文本,但问题是当我发布消息到论坛它看起来像编码的HTML文本。我想我应该以某种方式解码。我错了吗?

我的代码是如何使用此脚本的:

<script type="text/javascript" src="http://js.nicedit.com/nicEdit-latest.js"></script> 

<script type="text/javascript">
  bkLib.onDomLoaded(function() {
        new nicEditor().panelInstance('message_body');
  });
  </script>

<textarea cols="200" id="message_body" name="message_body" style="height:300px;"><?php echo str_replace( "<br />", "", $AppUI->___((($message_id == 0) and ($message_parent != -1)) ? "\n>"  .  $last_message_info['message_body'] . "\n" : $message_info['message_body']) );   ?> 
</textarea>

<INPUT class="button" type=submit name="submit" value="Send" onclick="nicEditors.findEditor('message_body').saveContent();">
textarea中的

php部分取自之前的textArea字段,因为我正在编辑已有的项目。

如何使用niceEditor编辑我的文本:

我发布时的外观如何: enter image description here

在我看来,当我发布它时,我需要以某种方式解码这个文本。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我用php函数修复它:

htmlspecialchars_decode($printingValue);