How to check whether CKEditor has some text in it?

后端 未结 6 1496
时光取名叫无心
时光取名叫无心 2021-02-04 02:08

I have an HTML form with a few fields. One of them is a textarea managed by CKEditor.

When the user wants to submit the form, I want to check whether he entered values

相关标签:
6条回答
  • 2021-02-04 02:13

    You can use the following snippet to check if the ckeditor has some text.

    var _contents = CKEDITOR.instances.editor1.document.getBody().getText();
    if (_contents == '') {
        alert('Please provide the contents.') ;
    }
    
    0 讨论(0)
  • 2021-02-04 02:15

    We use prototype, with that library and the following addition:

    Element.addMethods({  
      getInnerText: function(element) {
        element = $(element);
        return element.innerText && !window.opera ? element.innerText
          : element.innerHTML.stripScripts().unescapeHTML().replace(/[\n\r\s]+/g, ' ');
      }
    });
    

    (Thanks to Tobie Langel)

    I was able to use the following function to determine whether any actual text was inside CKEditor:

    function editorEmpty(instanceName){
    
        var ele = (new Element('div')).update(CKEDITOR.instances[instanceName].getData()); 
    
        return (ele.getInnerText() == '' || innerText.search(/^( )+$/i) == 0);
    }
    

    Note the test for &nbsp; as well - often when the editor appears empty, it actually contains something like: <p>&nbsp;</p>.

    0 讨论(0)
  • 2021-02-04 02:17

    CKEditor 5 - Classic editor

    This is an old question but, since it's one of the first results in google, i think it would be helpful to update the answer for the latest versions of ckeditor, in my case ckeditor 5 version 11.0.1

    The problem with ckeditor 5 is even when it's/looks empty, when submitting the form, it does'nt send an empty value as you may expect, but instead it send this string :

    <p>&nbsp;</p>
    

    It's not what you want, especially when you want set some validations rules on the server side.

    To avoid this headache, i use this snippet of code based on light-flight answer:

    $(document).ready(function() {
    
        var editorContainer = document.querySelector('#editor');
    
        var check_if_empty = function(val) {
    
            return $.makeArray($(val)).every(function(el) {
    
                return el.innerHTML.replace(/&nbsp;|\s/g, '').length === 0;
            });
        };
    
        var clear_input_if_empty_content = function(input) {
    
            var $form = $(input).parents('form');
    
            $form.on('submit', function() {
    
                if (check_if_empty($(input).val())) {
    
                    $(input).val('');
                }
            });
        };
    
        ClassicEditor.create( editorContainer )
            .then(function(editor) {
                clear_input_if_empty_content(editorContainer)
            })
            .catch(function(error) {
                console.log(error);
            });
    });
    
    0 讨论(0)
  • 2021-02-04 02:21

    CKeditor has its own built in function for retrieving data in a text editor:

    function CheckForm(theForm) 
    {
        textbox_data = CKEDITOR.instances.mytextbox.getData();
        if (textbox_data==='')
        {
            alert('please enter a comment');
        }
    }
    

    Documentation

    0 讨论(0)
  • 2021-02-04 02:30

    <script>
    CKEDITOR.replace('messagechat');
    
    var feedback = CKEDITOR.instances.messagechat.document.getBody().getChild(0).getText(); 
    // get Data
    alert(feedback);
    </script>
    
    0 讨论(0)
  • 2021-02-04 02:31

    This will work:

    $("#editorContainer iframe").contents().find("body").text();
    

    That will contain only the text, and none of the html tags.

    UPDATE

    It definitely works on the CKEditor demo page. Use Firefox and Firebug, go to the Firebug console, and type in:

    $("#demoInside iframe").contents().find("body").text();
    

    The console will print out the text in the editor, with no html tags. Make sure you have the selector correct in your particular application. You can test your selector like this:

    $("#demoInside iframe").contents().find("body").length;
    

    That should equal 1. If it's 0, your selector is wrong.

    UPDATE 2

    Again, my code is still correct, and it still works on that page. You just need the right selector. On the page you linked to, it is a <span> with id cke_editor1. That particular page does not make use of jQuery, so it requires some additional work to prove this sample works. Install FireQuery, "jqueryify" the page, and then do this in the Firebug console (note you have to use jQuery and not $. That's how FireQuery works).

    jQuery("#cke_editor1 iframe").contents().find("body").text();
    

    In short, make sure you have the right selector to get to your iframe. Whether you create your CKEditor from a <div> or a <textarea> is not important. As long as you can select the <iframe> that CKEditor injects into the DOM, you can use .contents().find("body").text() to get the text of that iframe. Have you tested your jquery selector to see if .length == 1?

    0 讨论(0)
提交回复
热议问题