主题: 如何设置?提取纯文本?
作者: 很无奈, 发布日期: 2013-08-02 10:05:42, 浏览数: 2582
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>无标题页</title>
    <script src="Editor/kindeditor.js"></script>
    <script>
    var editor;
    KindEditor.ready(function(K) {
    editor = K.create('textarea[name="content1"]', {
    uploadJson : '../upload_json.ashx', 
    resizeType : 1,
    allowFileManager :false,
    allowPreviewEmoticons : false,
    allowImageUpload : true,
    themeType : 'simple',
    items : [
    'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
    'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
    'insertunorderedlist', '|', 'emoticons', 'multiimage', 'link'] ,
					    afterChange : function()
					     {
    					  
					     }  
    }); 
    });  
    </script>
</head>
<body>
<textarea name="content1" style="width:868px;height:300px;" id="content1" runat="server"></textarea>
<input id="Text2" type="text" />
</body>
</html>

如何将即时输入编辑器提取纯文本到 Text2 文本框里了?

我尝试了很多,都有错误

作者: wei, 发布日期: 2013-08-02 14:55:25
//取得HTML内容
html
= KE.html('editor_id');

//同步数据后可以直接取得textareavalue
KE
.sync('editor_id');
html
= document.getElementById('editor_id').value;

回复
作者: 小卡向前冲, 发布日期: 2013-08-02 17:27:29

回复wei:额,为什么觉得。。。问非所答呢。。。 他要的是文本域中的纯文本

比如:

这是

一句

这一段获取的结果应该是: “这是一句话”才对吧。

回复
发表新帖 发表回复