suneditor实现一个可见即可得html富文本编辑器效果代码

代码语言:html

所属分类:其他

代码描述:suneditor实现一个可见即可得html富文本编辑器效果代码

代码标签: suneditor 富文本 编辑器

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<html lang="en">

<head>

    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, user-scalable=no">


    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/suneditor.min.css">
    <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/suneditor.min.js"></script>
    <style>
        body {
            min-width: 100%;
            background-color: #222;
        }

        .content {
            margin: 150px auto;
            max-width: 960px;
        }

        h1 {
            color: #fff;
            text-align: center;
        }
    </style>
</head>

<body style=" background-color:#000;">


    <div class="content">
        <h1>Suneditor Demo</h1>
        <form name="frm">
            <textarea id="editor" style="width: 100%; height: 400px; display: none;">Hello World!</textarea>
        </form>
    </div>

    <script>
        SUNEDITOR.create('editor',{
        font : [
            'Arial',
            'tahoma',
            'Courier New,Courier'
        ],
        fontSize : [
            8, 10, 14, 18, 24, 36
        ],
        colorList: [
            ['#ccc', '#dedede.........完整代码请登录后点击上方下载按钮下载查看

网友评论0