-1

我遇到了http://redactorjs.com,这是一个非常好的所见即所得编辑器,具有直播功能。换句话说,在一行中,您可以动态地将静态 div 转换为可编辑的文本区域。

我 - 不想 - 付钱(出于某些原因我不会透露)因此我正在寻找替代方案。

你有没有使用过轻量级的基于 jquery 的编辑器,可以轻松使用?

我正在寻找我会使用如下的东西:

$("#edit_btn").click(function({
     $("#my_div").turnIntoEditor();
}));

$("#save_btn").click(function({
     $("#my_div").post_content("http://target");
     $("#my_div").turnIntoStatic();
}));

请不要介意 post_content 和其他函数名称,因为它们仅供参考,以显示我所关注的用法。

谢谢

4

1 回答 1

0

我终于去了ckeditor。我可以按如下方式轻松使用它(poc):

            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
            <html xmlns="http://www.w3.org/1999/xhtml">

                <head>
                    <meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
                    <title>Title</title>


                    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
                    <script type="text/javascript" src="ckeditor/ckeditor.js"></script>
                    <script type="text/javascript" src="ckeditor/adapters/jquery.js"></script>
                    <script type="text/javascript">
                        $(document).ready(function(){
                            $("#edit").click(function(){
                                $( '.editable' ).ckeditor();
                            });

                            $("#save").click(function(){
                                var editor = CKEDITOR.instances['editor'];
                                if (editor) { editor.destroy(); }

                                alert($('#editor').html());
                            });
                        });

                    </script>
                </head>
            <body>
                <span id="edit">EDIT</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span id="save">SAVE</span><br/><br/>
                <div class="editable" id="editor">
                    Some useless content
                </div>
            </body>
            </html>
于 2012-09-03T13:12:23.767 回答