zoukankan      html  css  js  c++  java
  • KendEditor 加载回复编辑框

    1 //加载回复编辑框
    2  KE.init({
    3 id : 'Comments',
    4 afterCreate : function(id) {
    5 KE.util.focus(id);
    6 },
    7 resizeMode : 1,
    8 allowPreviewEmoticons : false,
    9 allowUpload : false,
    10 autoSetDataMode : true,
    11 items : [
    12 'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold', 'italic', 'underline',
    13 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
    14 'insertunorderedlist', '|', 'emoticons', 'image', 'link'],
    15 afterSetData : function(id) {
    16 if(KE.count(id, 'text')>=10){
    17 $("#btn_comment").unbind('click').removeAttr('onclick').click(function(){ });
    18 }else{
    19
    20 }
    21 if(KE.count(id, 'text')>=300){
    22 KE.$('comment_result').innerHTML = '<span class="redfont">输入的字数不能多于300个</span>';
    23 $("#btn_comment").unbind('click').removeAttr('onclick').click(function(){ alert('输入的字数不能多于300个');return false;});
    24 }else if(KE.count(id, 'text')<=10){
    25 KE.$('comment_result').innerHTML = '当前输入' + KE.count(id, 'text') + '个字<span class="redfont">不能少于10个字</span>';
    26 }else{
    27 $("#btn_comment").unbind('click').removeAttr('onclick').click(function(){ });
    28 KE.$('comment_result').innerHTML = '当前输入' + KE.count(id, 'text') + '个字';
    29 }
    30 }
    31 });
    32 //回复引用
    33 function groupquote(id,sign){
    34 javascript:KE.remove('Comments');
    35 $("#Comments").val($("#gbody_"+id).html());
    36 javascript:KE.create('Comments');
    37 }
    38 </script>

    aliyun活动 https://www.aliyun.com/acts/limit-buy?userCode=re2o7acl
  • 相关阅读:
    开源的excel读取库libxls在windows下的编译,且支持中文,全网首发
    UTF8与GBK、GB2312等其他字符编码的相互转换
    深入理解Netty框架
    论一道编程面试题解法
    JVM调优总结-Xms -Xmx -Xmn -Xss
    Linux上安装jdk1.8和配置环境变量
    .NET GC垃圾回收器
    T4 模板
    Vue 环境搭建
    Spring Cloud 入门系列(一)
  • 原文地址:https://www.cnblogs.com/wangbin/p/1946889.html
Copyright © 2011-2022 走看看