


the front-end of the recent project uses jquery, and the front-end validation of the form uses jquery validate. it is very simple and convenient to use, and i have always been very satisfied.
some time ago, an html rich text editor was added to the textarea type elements in the form according to the needs. i used ckeditor, which is powerful and easy to customize. i am also very satisfied.
however, for the textarea element enhanced with ckeditor, this field is required to be non-empty, and jquery validate always fails the verification. the reason is that after the ckeditor editor fills in the content, the editor does not immediately update the content to the original one. in the textarea element, i didn’t look at the source code carefully. one situation i tried was that every submission failed, but the second submission passed. it seems that the editor updates the editor’s content into the textarea before the submit event. (this is just a guess, i don’t know if it’s correct. i’m not very familiar with jquery and ckeditor. i just use them as they come and let them go if there are any problems).
so i found the code to solve the problem on the internet. the code was not written by me. i just recorded the problems i encountered. the code is not original. the principle is that when the editor updates the content, it immediately updates the content to the textarea element.
ckeditor.instances["page_content"].on("instanceready", function() { //set keyup event this.document.on("keyup", updatetextarea); //and paste event this.document.on("paste", updatetextarea); }); function updatetextarea() { ckeditor.tools.settimeout( function() { $("#page_content").val(ckeditor.instances.page_content.getdata()); $("#page_content").trigger('keyup'); }, 0); }
everything is working normally now, which solves a headache problem for me.
another solution:
ckeditor editor is an enhanced textarea element. after filling in the content, the editor does not immediately update the content to the original textarea element. instead, it waits until the submit event to update the editor content to the textarea. .
therefore, ordinary js validation or jquery validate validation cannot obtain the editor value.)
1.js verification
it is actually very easy to get the value of the ckeditor editor. the value is ckeditor.instances.mckeditor.getdata(). the example code is as follows:
<script language="javascript" type="text/javascript"> function checkform() { var f=document.form1; var topicheading=f.tbtopicheading.value; topicheading = topicheading.replace(/^\s+/g,""); topicheading = topicheading.replace(/\s+$/g,""); if (topicheading =="") { alert("请输入发表话题的标题."); f.tbtopicheading.focus(); return false; } if(topicheading.length>50); { alert("话题的主题长度必须在50字符以内."); f.tbtopicheading.focus(); return false; } var topiccontent=ckeditor.instances.mckeditor.getdata(); topiccontent = topiccontent.replace(/^\s+/g,""); topiccontent = topiccontent.replace(/\s+$/g,""); if (topiccontent =="") { alert("请填写话题内容."); f.mckeditor.focus(); return false; } if(topiccontent.length>4000) { alert("话题内容的长度必须在4000字符以内."); f.mckeditor.focus(); return false; } } </script>
among them, mckeditor is the id and name of the editor's textarea.
the same is true in asp.net:
2.jquery validate
jquery’s verification mode cannot directly use the value of ckeditor.instances.mckeditor.getdata().
it is submitted for verification using the following form:
function initrules() { opts = { rules: { tbtopicheading:{ required:true, maxlength:50 }, mckeditor:{ required:true, maxlength:4000 } }, messages: { tbtopicheading:{ required:"请输入发表话题的标题.", maxlength:jquery.format("话题的主题长度必须在50字符以内.") }, mckeditor:{ required:"请填写话题内容.", maxlength:jquery.format("话题内容的长度必须在4000字符以内.") } } } }
among them, mckeditor is the control id, which not only has the function of obtaining value, but also has the function of positioning prompt information.
therefore, you can add instantiation editor code when the page is loaded, so that after the editor updates the content, it will immediately update the content to the textarea element.
the code is as follows:
<script type="text/javascript"> //<![cdata[ ckeditor.instances["mckeditor"].on("instanceready", function() { //set keyup event this.document.on("keyup", updatetextarea); //and paste event this.document.on("paste", updatetextarea); }); function updatetextarea() { ckeditor.tools.settimeout( function() { $("#mckeditor").val(ckeditor.instances.mckeditor.getdata()); $("#mckeditor").trigger('keyup'); }, 0); } //]]> </script>
this code can be placed under the editor control. the complete example is as follows:
<asp:TextBox ID="mckeditor" runat="server" TextMode="MultiLine" Width="98%" Height="400px" CssClass="ckeditor"></asp:TextBox> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( '<%=mckeditor.ClientID %>',// mckeditor.ClientID为TextBox mckeditor生成的对应客户端看到的id { skin : 'kama',//设置皮肤 enterMode : Number(2),//设置enter键的输入1.<p>2为<br/>3为<div> shiftEnterMode : Number(1), // 设置shiftenter的输入 disableNativeSpellChecker:false, scayt_autoStartup:false, toolbar_Full : [ ['Source','-','Save','NewPage','Preview','-'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], ['Image','Table','HorizontalRule'],['Subscript','Superscript'], '/', ['Bold','Italic','Underline'], ['TextColor','BGColor'], ['Styles','Format','Font','FontSize'] ], //filebrowserBrowseUrl: '<%=ResolveUrl("~/ckfinder/ckfinder.html")%>', //启用浏览功能,正式使用场合可以关闭,只允许用户上传 //filebrowserImageBrowseUrl:'<%=ResolveUrl("~/ckfinder/ckfinder.html?Type=Images")%>', //filebrowserImageUploadUrl:'<%=ResolveUrl("~/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Images")%>' 如果使用ckfinder 就不要屏蔽 //自定义的上传 filebrowserImageUploadUrl:'<%=ResolveUrl("~/fileupload/fileupload.aspx?command=QuickUpload&type=Images")%>' }); CKEDITOR.instances["mckeditor"].on("instanceReady", function() { //set keyup event this.document.on("keyup", updateTextArea); //and paste event this.document.on("paste", updateTextArea); }); function updateTextArea() { CKEDITOR.tools.setTimeout( function() { $("#mckeditor").val(CKEDITOR.instances.mckeditor.getData()); $("#mckeditor").trigger('keyup'); }, 0); } //]]> </script>
the above are two solutions to the problem that ckeditor cannot verify. i believe that everyone will gain something like the editor. thank you for reading.

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
