zoukankan      html  css  js  c++  java
  • UEditor编辑器增加placeholder提示

    HTML:

           <div>
                  <!-- 加载编辑器的容器 -->
                  <div id="editor"  class="fls" style="815px;margin-bottom:10px"></div>
           </div>
                  <input id="editortext"   type="hidden" />

    JS:

    //编辑器ID:editor     储存文本值ID:editortext
    UE.Editor.prototype.placeholder = function (justPlainText) { var _editor = this; _editor.addListener("focus", function () { var localHtml = _editor.getPlainTxt(); if ($.trim(localHtml) === $.trim(justPlainText)) { _editor.setContent(""); } }); _editor.addListener("blur", function () { var localHtml = _editor.getContent(); if (!localHtml) { _editor.setContent('<p style="color: #CDCDCD">' + justPlainText + '</p>');//提示语字体灰色 //_editor.setContent(justPlainText);//提示语字体黑色 } }); _editor.ready(function () { _editor.fireEvent("blur"); }); }; //失去焦点,文本为空时,添加 UE.getEditor('编辑器ID').addListener('blur', function () { if ($("#储存文本值ID").val() == "") { //placeholder内容(只能是文本内容) editor.placeholder("请输入。。。。"); } }); //实例化编辑器example var editor = UE.getEditor('编辑器ID'); if ($("#储存文本值ID ").val() == "") { //placeholder内容(只能是文本内容) editor.placeholder("请输入。。。。"); }

      

  • 相关阅读:
    hadoop集群无法找到datanode节点问题解决
    Startup.A51说明(上)
    UCOSII基础之数据结构
    FPGA之难度
    UCOSII学习笔记【二】
    (转)PCB中各层的含义(protel中)
    UCOSII学习笔记 一
    查看51汇编,解决奇怪的问题
    滑雪
    HMM的理解
  • 原文地址:https://www.cnblogs.com/yueyongsheng/p/12563979.html
Copyright © 2011-2022 走看看