Jquery plug-in easyUi implements form validation example_jquery
Function to be implemented: When adding student information, use the verification function of easyui to determine whether the student number is repeated and the student number can only be a number
The final effect is as shown below:
But in the process of doing this, I encountered a series of problems:
Expand the verification method of validatebox. The initial verification code is as follows:
//学号格式只能为数字 ****//这里没有问题**** number: {//value值为文本框中的值 validator: function (value) { var reg = /^[0-9]*$/; return reg.test(value); }, message: '学号格式不正确.' }, //验证学号不能重复 snumber: { //param参数为textarea的id值 validator: function (value, param) { //将从后台获取的json数据先放入textarea,再获取出来后解析成数组 var snumbers = $.parseJSON($(param)[0].val()); for(var i=0;i < snumbers.length;i++){ if(value == snumbers[i]){ //如果学号有重复返回false return false; } } return true; }
Here we will only do the student ID re-verification because there are some other problems and we also encountered some problems:
The form is written like this at first, the validType attribute is written in the data-options attribute:
<input id="addSnumber" class="easyui-textbox" style="width: 200px; height: 30px;" type="text" name="snumber" data-options="required:true,validType:'snumber[#snumbers]', missingMessage:'请输入学号'" /> <textarea id="snumbers" style="display: none"></textarea>
There is a problem here: Firebug will report an error when writing this way, because #snumbers needs to be enclosed in quotation marks, but adding quotation marks directly will cause an error. This is equivalent to triple quotation marks. I checked a lot of information on the Internet, and some use escaping. None of them work. I guess this is a problem with easyui parsing, unless the source code of easyui is changed. If anyone knows about it, please feel free to enlighten me.
Then put the validType attribute outside and the verification is successful, as follows:
<input id="addSnumber" validType="snumber['#snumbers']" class="easyui-textbox" style="width: 200px; height: 30px;" type="text" name="snumber" data-options="required:true, missingMessage:'请输入学号'" /> <textarea id="snumbers" style="display: none"></textarea>
Then a new question arises, how to add student number format verification?
This is how I wrote it. It didn’t work. I think it’s still a problem with triple quotes. Firebug reported an error. I tried various methods but it didn’t work:
<input id="addSnumber" validType="['snumber['#snumbers']', 'number']" class="easyui-textbox" style="width: 200px; height: 30px;" type="text" name="snumber" data-options="required:true, missingMessage:'请输入学号'" /> <textarea id="snumbers" style="display: none"></textarea>
Then I tried another way, dynamically loading the easyui control, but the two verifications still had the same problem when put together. Here I must have solved the problem of easyui parsing, so I won’t worry about it.
I encountered two problems here. One is how to put the data returned by ajax into the validType attribute, that is, without using another textarea to store the data. Unsolved... Please guide
The second problem is that dynamically setting easyui controls is invalid. To put it simply, the code is as follows:
<input id="addSnumber" style="width: 200px; height: 30px;" type="text" name="snumber" /> //设置easyui控件 $("#addSnumber").attr("class", "easyui-textbox"); //设置验证属性 $("#addSnumber").attr("validType","snumber['#snumber']"); 上面这样在jQuery里设置easyui控件后,没有效果,后来百度了下,动态添加easy控件后需要重新渲染下,如下: //设置easyui控件 $("#addSnumber").attr("class", "easyui-textbox"); //设置验证属性 $("#addSnumber").attr("validType","snumber['#snumber']"); //解析所有页面 $.parser.parse();
That’s it; but after looking at easyui’s API, I found that it can only parse a certain DOM element.
The following code does not achieve the effect:
//设置easyui控件 $("#addSnumber").attr("class", "easyui-textbox"); //设置验证属性 $("#addSnumber").attr("validType","snumber['#snumber']"); //解析指定元素 $.parser.parse($("#addSnumber"));
I later found out through Baidu:
parser only renders the descendant elements of $("#addSnumber"), not including $("#addSnumber") itself, and its descendant elements do not contain any control classes supported by Easyui, so this place has to be Got the desired effect.
So if you want to render a single element, you have to write it like this:
//设置easyui控件 $("#addSnumber").attr("class", "easyui-textbox"); //设置验证属性 $("#addSnumber").attr("validType","snumber['#snumber']"); //解析指定元素,找它的父元素 $.parser.parse($("#addSnumber").parent());
Back to the previous question, verify that the student number cannot be repeated and the student number format.
Finally, I checked various information online and found that my idea was not working, because I first loaded all the student IDs into the client and then verified them, but there was a problem with this. If multiple users added student IDs during this period, May lead to duplication.
So finally, the operation of obtaining all student IDs is put into the verification function, as follows:
//验证学号不能重复 snumber: { validator: function (value) { var flag = true; $.ajax({ type: "post", async: false, url: "/sims/StudentServlet?method=AllSNumber", success: function(data){//在验证函数里加载数据,加载过来后判断输入的值 var snumbers = $.parseJSON(data); for(var i=0;i < snumbers.length;i++){ if(value == snumbers[i]){ flag = false; break; } } } }); return flag; }, message: '学号重复' },
The advantage of writing this way is that it can load data in real time for judgment, and when submitting the form, it will also load data for judgment again, and there is no need to pass in parameters, so there will be no more triple quotation marks; but there is one The disadvantage is that it will request the database many times and consumes a lot of server resources.
When submitting the form, add the following sentence to verify the form:
//验证表单 var validate = $("#editStuForm").form("validate"); if(!validate){ $.messager.alert("消息提醒","请检查你输入的数据!","warning"); return; } else{ //提交 }
Here is another question, the form code is as follows:
<input id="addSnumber" class="easyui-textbox" validType="'snumber', 'number'" style="width: 200px; height: 30px;" type="text" name="snumber" data-options="required:true, missingMessage:'请输入学号'" />
After placing the validType attribute outside data-options, it cannot be verified and Firebug will report an error! ! !
Finally put it in data-options:
<input id="addSnumber" class="easyui-textbox" style="width: 200px; height: 30px;" type="text" name="snumber" data-options="required:true, validType:['snumber', 'number'], missingMessage:'请输入学号'" />
OK, everything is OK, both verifications are OK! ! !
Summary: easyui verifies duplication and format, multiple verification
//学号格式只能为数字 number: {//value值为文本框中的值 validator: function (value) { var reg = /^[0-9]*$/; return reg.test(value); }, message: '学号格式不正确.' }, //验证学号不能重复 snumber: { validator: function (value) { var flag = true; $.ajax({ type: "post", async: false, url: "/sims/StudentServlet?method=AllSNumber", success: function(data){//在验证函数里加载数据,加载过来后判断输入的值 var snumbers = $.parseJSON(data); for(var i=0;i < snumbers.length;i++){ if(value == snumbers[i]){ flag = false; break; } } } }); return flag; }, message: '学号重复' },
<tr> <td>学号:</td> <td> <input id="addSnumber" class="easyui-textbox" style="width: 200px; height: 30px;" type="text" name="snumber" data-options="required:true, validType:['snumber', 'number'], missingMessage:'请输入学号'" /> </td> </tr>
The final effect is as shown below:
OK! ! !
Most of them are summarized by myself after many attempts. I still don’t understand the principles of many things. I think it is a problem with easyui.min.js. I still need to continue to learn. I hope this article can help everyone.

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

jQuery is a fast, small, feature-rich JavaScript library widely used in front-end development. Since its release in 2006, jQuery has become one of the tools of choice for many developers, but in practical applications, it also has some advantages and disadvantages. This article will deeply analyze the advantages and disadvantages of jQuery and illustrate it with specific code examples. Advantages: 1. Concise syntax jQuery's syntax design is concise and clear, which can greatly improve the readability and writing efficiency of the code. for example,

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s
