zoukankan      html  css  js  c++  java
  • KindEditor 4.1.7的使用技巧

    1、载入进这个自己写的js代码

    $(function(){
    	
    	if ($("textarea.editor").length) {
    		var editor = KindEditor.create('textarea.editor', {
    			resizeType : 0,
    			allowPreviewEmoticons : false,
    			allowImageUpload : false,
    			afterChange: function(){
    				this.sync();
    			},
    			items : [
    				'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
    				'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
    				'insertunorderedlist', '|', 'emoticons', 'link']
    		});
    	}  });

    2、再引用下载下来KindEditor 4.1.7资源包里的min.js  (前提是把它放到你的项目文件中面)

    <script src="/resources/kindeditor-4.1.7/kindeditor-min.js"></script>


    3、在页面的引用

         <div class="form-group">
                <div class="col-md-2 control-label"> <label for="profile_about">自我介绍</label> </div>
                <div class="col-md-7 controls"><textarea id="profile_about" name="introduction" class="form-control editor" style="500px;height:200px;">${(user.introduction)!''}</textarea> </div>
              </div>


  • 相关阅读:
    Codeforces 877 C. Slava and tanks
    Codeforces 877 D. Olya and Energy Drinks
    2017 10.25 NOIP模拟赛
    2017 国庆湖南 Day1
    UVA 12113 Overlapping Squares
    学大伟业 国庆Day2
    51nod 1629 B君的圆锥
    51nod 1381 硬币游戏
    [JSOI2010]满汉全席
    学大伟业 2017 国庆 Day1
  • 原文地址:https://www.cnblogs.com/gavanwanggw/p/7295438.html
Copyright © 2011-2022 走看看