主题: 修改编辑器内容失败,使用服务器获取的数据初始化textarea。
作者: fjdkfjdlks, 发布日期: 2014-01-28 10:23:27, 浏览数: 2242

表单:

<textarea id="text_editor" name="text_editor" style="width:700px;height:300px;"><?php echo $perRow["jadeinfo_content"]; ?></textarea>


脚本:

<script>
KindEditor.ready(function(K) 
{
 window.editor = K.create('#text_editor');
});
</script>


服务器程序:

$content = "";
if (!empty($_POST['text_editor'])) 
{
if (get_magic_quotes_gpc()) { $content = stripslashes($_POST['text_editor']); } 
else { $content = $_POST['text_editor']; }
}
就是修改失败,大侠帮忙看下。

发表新帖 发表回复