主题: 我不得不来请教一下非空问题
作者: mayi168, 发布日期: 2012-06-17 17:55:45, 浏览数: 2319

请问,KE怎么验证非空?我发觉这是个高难度问题啊。请搞过的朋友拉一把。

 

KE把这个最基本的问题给搞复杂了。

作者: Roddy, 发布日期: 2012-06-17 18:39:53
editor.isEmpty() 应该可以满足一般的需求。
回复
作者: mayi168, 发布日期: 2012-06-18 18:58:25

 <script>
  KindEditor.ready(function(K) {
   var editor1 = K.create('textarea[name="content1"]', {
    cssPath : 'editor/plugins/code/prettify.css',
    uploadJson : 'editor/php/upload_json.php',
    fileManagerJson : 'editor/php/file_manager_json.php',
     items : [
    'source', 'image','flash', 'media', 'insertfile','emoticons'
    ],
    allowFileManager:true,
    resizeMode:0,
                pasteType:1,
    dialogAlignType:false,
             afterCreate : function() {
     var self = this;
     K.ctrl(document, 13, function() {
      self.sync();
      K('form[name=example]')[0].submit();});
     K.ctrl(self.edit.doc, 13, function() {
      self.sync();
      K('form[name=example]')[0].submit();
     });
    }
   });

   
   prettyPrint();
  });
</script>

 

 

请问 editor.isEmpty()怎么加?都是失败啊。

回复
作者: mayi168, 发布日期: 2012-06-18 19:15:29

afterchange这些用处不大的都设定了

 

想增加个onsubmit,针对提交时各种检验。但是不会写啊。请问去哪里设定?

回复
发表新帖 发表回复