首页 > 其他 > 详细

kindedit

时间:2016-08-01 11:57:28      阅读:186      评论:0      收藏:0      [点我收藏+]
<!doctype html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Default Examples</title>
    <style>
        form
        {
            margin: 0;
        }
        textarea
        {
            display: block;
        }
    </style>
    <link rel="stylesheet" href="http://kindeditor.net/ke4/themes/default/default.css" />
    <script charset="utf-8" src="http://kindeditor.net/ke4/kindeditor-min.js"></script>
    <script charset="utf-8" src="http://kindeditor.net/ke4/lang/zh_CN.js"></script>
    <script>
        var editor;
        KindEditor.ready(function (K) {
            editor = K.create(textarea[name="content"], {
                allowFileManager: true
            });
            K(input[name=getHtml]).click(function (e) {
                alert(editor.html());
            });
            K(input[name=getText]).click(function (e) {
                alert(editor.text());
            });
            K(input[name=setHtml]).click(function (e) {
                //设置HTML
                editor.html(<h3>Hello KindEditor</h3>);
            });
            K(input[name=setText]).click(function (e) {
                //设置文本
                editor.text(<h3>Hello KindEditor</h3>);
            });
        });
    </script>
</head>
<body>
    <h3>
        默认模式</h3>
    <form>
    <textarea name="content" style="width: 800px; height: 400px; visibility: hidden;">KindEditor</textarea>
    <p>
        <input type="button" name="getHtml" value="取得HTML" />
        <input type="button" name="getText" value="取得文本(包含img,embed)" />
        <br />
        <input type="button" name="setHtml" value="设置HTML" />
        <input type="button" name="setText" value="设置文本" />
    </p>
    </form>
</body>
</html>

 

kindedit

原文:http://www.cnblogs.com/go4mi/p/5725181.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!