When I was learning javaweb, I did the exercise of adding the form information on the page to the database. When submitting a form, you need to ensure that each input box, radio button, check box, etc. is not empty. At the beginning, you get the values of the controls one by one to determine whether they are empty. Later, you learned about form serialization. Just use serialization to determine the null value.
//form form page
<form id="basicInfo" action="EmployeeServlet?flag=addEmployeeInfo" method="post"> <p class="formbody"> <p class="formtitle"><span>基本信息</span></p> <ul class="forminfo"> <li> <label>员工账号</label> <input id="account" name="account" type="text" class="dfinput" readOnly="true" /> <i>设置员工姓名和入职时间后,系统自动生成,无法更改</i> </li> <li> <label>员工姓名</label> <input name="name" type="text" class="dfinput" id="name" /> <i>姓名不能为数字</i> </li> <li> <label>密码</label> <input name="password" type="password" class="dfinput" id="pwd" placeholder="空值或空白则默认密码为123456" /> <i></i> </li> <li> <label>性别</label> <cite> <input name="gender" type="radio" value="男" checked="checked" />男 <input name="gender" type="radio" value="女" />女 </cite> </li> <li> <label>生日</label> <input id="birth" name="birthday" type="text" class="dfinput" placeholder="格式:yyyy-mm-dd"/> <i id = "birthTip"></i> </li> <li> <label>手机号码</label> <input id="phone" name="telephone" type="text" class="dfinput" /> <i id = "phoneTip"></i> </li> <li> <label>邮箱</label> <input id="email" name="email" type="text" class="dfinput" /> <i id = "emailTip"></i> </li> <li> <label>地址</label> <input name="address" type="text" class="dfinput" /> <i id = "addressTip"></i> </li> <li> <label>所属部门</label> <select id="dept" class="dfinput" name="dept"> </select> </li> <li> <label>入职时间</label> <input id="entrytime" name="entrytime" type="text" class="dfinput" placeholder="格式:yyyy-mm-dd" /> <i id = "timeTip"></i> </li> <li> <label>员工状态</label> <select id="empstate" class="dfinput" name="empstate"> </select> </li> <li> <label>直属上级</label> <input id="superior" name="superior" type="text" class="dfinput" placeholder="直属上级员工id" /> <i id = "superTip"></i> </li> <li> <label>职务</label> <select id="dutyid" class="dfinput" name="dutyid"> </select> </li> <li> <label>角色权限</label> <select id="authority" class="dfinput" name="authority"> </select> </li> <li> <label> </label> <input id="savebtn" type="submit" class="btn" value="确认保存"/> </li> </ul> </p> </form>
Triggered when a submission is written in the external link js file The event
$('form').submit(function(){ //当密码为空的时候自动赋值 var pwd = $('#pwd').val(); if(pwd==null || pwd == ''){ $('#pwd').val('123456'); } var data = $('form').serialize(); //表单序列化后返回一个字符串 如:account=123&password=1234&sex=&dept=2 var array = data.split('&'); //把字符串按&号分隔成数组 得到 {account=123,password=1234,sex=,dept=2} 字符串数组 for(var i = 0;i < array.length; i++){ var kwarr = array[i].split('='); //循环将数组中的每个子元素字符串用=号分隔成数组 {account,123} {sex,} 然后判断索引为1的子元素是否存在或为‘' 从而达到了表单判空的目的 if(kwarr[1]===null || kwarr[1] ===''){ alert('除密码外不能存在空值'); return false; } } });
The above is the entire content of the example of JS form serialization to determine the null value brought by the editor. I hope you like it~
Related recommendations:
About PHP data serialization testing
Detailed explanation of PHP serialization and deserialization principles
jQuery form serialization example code example sharing
The above is the detailed content of js method to implement form serialization to determine null value. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
