• kindedit


    <!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=" 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>
  • 相关阅读:
    STM8S PWM输出停止后 IO口电平输出
    STM8 输出比较极性
    无法打开包括文件: “corecrt.h”: No such file or directory
    VC++深入详解学习笔记
    x86系列微处理器中8种描述符表https://blog.csdn.net/u014162133/article/details/46573873
    计算机目录
    windbg双机调试
    二叉树
    list
    vector
  • 原文地址:https://www.cnblogs.com/go4mi/p/5725181.html
Copyright © 2020-2023  润新知