CKeditor使用js验证不得为空

    if (CKEDITOR.instances.TextArea1.getData() == '') {
        alert('警告:详细内容不得为空!');
        CKEDITOR.instances.TextArea1.focus();
        return false;
    }
原文地址:https://www.cnblogs.com/by-dxm/p/6287152.html