kindeditor 4问题。。。

发布于 2021-11-07 07:03:14 字数 1173 浏览 774 评论 8

function showEdit(){
        var editor;
        KindEditor.ready(function(K) {
                editor = K.create('textarea[name="content"]', {
                        allowPreviewEmoticons : false,
                        allowImageUpload : false,
                        allowFlashUpload : false,
                        newlineTag : 'br',
                        pasteType : 1,
                        items : [
                                'source','plainpaste', 'wordpaste' , '|','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
                                'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'table' , '|', 'emoticons', 'image', 'flash', 'link' , 'map' , 'clearhtml', 'about']
                });
        });
        return editor;
}

然后我在页面用 

<script>var e = showEdit();e.html('test');</script>

 编辑器可以加载出来 为什么e.html('test'); 没用呢

 

以前用3.5 的时候没啥问题,换了4 后 就得不到editor了

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

初见你 2021-11-08 18:15:31

引用来自“cooc123”的答案

看我的

test.html

<script charset="utf-8" src="editor/kindeditor.js"></script>
<script charset="utf-8" src="editor/lang/zh_CN.js"></script>
<textarea name="content" id="content" style="width:55%;height:230px;"></textarea>
<script>
var editor;
KindEditor.ready(function(K) {
    editor  = K.create('textarea[name="content"]', {
   allowFileManager : true
	});
});

editor.insertHtml('<b>ccccc</b>');
</script>

ccccc 没用插入到编辑器里面

成熟稳重的好男人 2021-11-08 17:56:13

引用来自“pyawen”的答案

为什么不把
 
var
 
editor;  作为全局变量

反话 2021-11-08 16:23:17

为什么不把
 
var
 
editor;  作为全局变量

凯凯我们等你回来 2021-11-08 16:10:09

function test_insert(){

屌丝范 2021-11-08 16:00:00

看我的

test.html

<script charset="utf-8" src="editor/kindeditor.js"></script>
<script charset="utf-8" src="editor/lang/zh_CN.js"></script>
<textarea name="content" id="content" style="width:55%;height:230px;"></textarea>
<script>
var editor;
KindEditor.ready(function(K) {
    editor  = K.create('textarea[name="content"]', {
   allowFileManager : true
	});
});

editor.insertHtml('<b>ccccc</b>');
</script>

ccccc 没用插入到编辑器里面

醉生梦死 2021-11-08 15:31:56

我是这样的:

先 :

<script>
        var editor;
        var options = {
            width : '744px',
            height : '504px',
            filterMode : false
        };
        KindEditor.ready(function(K) {
            editor = K.create('#editor_id',options);
        });
</script>

后面

<script type="text/javascript">

    $(document).ready(function(){
        $('#save_mail').click(function(){

          html = editor.html();

            alert(html);

       })

})

</script>

檐上三寸雪 2021-11-07 17:25:44

引用来自“鲍平”的答案

<script type="text/javascript">

showEdit();

editor.html('test');

</script >

小瓶盖 2021-11-07 16:43:58

<script type="text/javascript">

showEdit();

editor.html('test');

</script >

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文