search
HomeWeb Front-endJS TutorialPage JavaScript validation function
Page JavaScript validation functionNov 25, 2016 pm 01:22 PM
javascript

/**************************************************************************************/
/***************************************Verification of numbers************ *******************************/
/**************************************************************************************/
/**
* Check whether the input string of characters are all numbers
* Input: str string
* Return: true or false; true is expressed as a number
*/
function checkNum(str){
return str.match(/D/) == null;
}

/**
* Check whether the input string of characters is a decimal
* Input: str string
* Return: true or flase; true represents a decimal
*/
function checkDecimal(str){
if (str.match(/^-?d+(.d+)?$/g) == null) {
return false;
}
else {
return true;
}
}
/**
* Check whether the input string of characters is integer data
* Input: str string
* Return: true or flase; true is expressed as a decimal
*/
function checkInteger(str){
if (str.match(/^[-+]?d*$/) == null) {
return false;
}
else {
return true;
}
}
/**************************************************************************************/
/***************************************Verification of characters************ *****************************/
/**************************************************************************************/

/**
* Check whether the entered string of characters is a character
* Input: str string
* Return: true or flase; true means all characters are characters and does not contain Chinese characters
*/
function checkStr(str){
if (/[^x00-xff]/g.test(str)) {
return false;
}
else {
return true;
}
}

/**
* Check whether the input string of characters contains Chinese characters
* Input: str string
* Return: true or false; true means it contains Chinese characters
*/
function checkChinese(str){
if (escape(str).indexOf("%u") != -1) {
return true;
}
else {
return false;
}
}

/**
* Check whether the entered email format is correct
* Input: str string
* Return: true or flase; true means the format is correct
*/
function checkEmail(str){
if (str.match(/[A-Za-z0-9_-]+[@](S*)(net|com|cn|org|cc|tv|[0-9]{1,3})(S*)/g) == null) {
return false;
}
else {
return true;
}
}

/**
* Check whether the format of the entered mobile phone number is correct
* Input: str string
* Return: true or false; true means the format is correct
*/
function checkMobilePhone(str){
if (str.match(/^(?:13d|15[89])-?d{5}(d{3}|*{3})$/) == null) {
return false;
}
else {
return true;
}
}

/**
* Check whether the entered fixed phone number is correct
* Input: str string
* Return: true or flase; true means the format is correct
*/
function checkTelephone(str){
if (str.match(/^(([0+]d{2,3}-)?(0d{2,3})-) (d{7,8})(-(d{3,}))?$/) == null) {
return false;
}
else {
return true;
}
}
/**
* Check whether the format of QQ is correct
* Input: str string
* Return: true or flase; true means the format is correct
*/
function checkQQ(str){
if (str.match(/^d{5,10}$/) == null) {
return false;
}
else {
return true;
}
}
/**
* Check whether the entered ID number is correct
* Input: str string
* Return: true or flase; true means the format is correct
*/
function checkCard(str){
//15-digit ID card regular expression
var arg1 = /^[1-9]d{7}((0d)|(1[ 0-2]))(([0|1|2]d)|3[0-1])d{3}$/;
//18-digit ID card regular expression
var arg2 = /^[ 1-9]d{5}[1-9]d{3}((0d)|(1[0-2]))(([0|1|2]d)|3[0-1]) ((d{4})|d{3}[A-Z])$/;
if (str.match(arg1) == null && str.match(arg2) == null) {
return false;
}
else {
return true;
}
}
/**
* Check whether the entered IP address is correct
* Input: str string
* Return: true or flase; true means the format is correct
*/
function checkIP(str){
var arg = /^(d{1,2}|1dd|2[0-4]d| 25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4] d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5])$/;
if (str.match(arg) == null ) {
return false;
}
else {
return true;
}
}
/**
* Check whether the entered URL address is correct
* Input: str string
* Return: true or flase; true means the format is correct
*/
function checkURL(str){
if (str.match(/(http[s]?| ftp)://[^/.]+?..+w$/i) == null) {
return false
}
else {
return true;
}
}
/**
* Check whether the entered characters have special characters
* Input: str string
* Return: true or flase; true means it contains special characters
* Mainly used for verification when registering information
*/
function checkQuote(str){
var items = new Array("~", "`", "!", "@", "#", "$", "%", "^", "&", "*", "{", "}", "[", "]", "(", ")");
items.push(":", ";", "'", "|", "\", "", "?", "/", ">", "||", "//");
items. push("admin", "administrators", "administrator", "administrator", "system administrator");
items.push("select", "delete", "update", "insert", "create" , "drop", "alter", "trancate");
str = str.toLowerCase();
for (var i = 0; i if (str.indexOf(items[ i]) >= 0) {
return true;
}
}
return false;
}

/**************************************************************************************/
/*************************************Time Verification************ *******************************/
/**************************************************************************************/
/**
* Check whether the date format is correct
* Input: str string
* Return: true or flase; true means the format is correct
* Note: Chinese date format cannot be verified here
* Verify short date (2007-06-05)
*/
function checkDate(str){
//var value=str.match(/((^((1[8-9]d{2})|([2-9]d{3}))(-)(10|12|0?[13578])(-)(3[01]|[12][0-9]|0?[1-9])$)|(^((1[8-9]d{2})|([2-9]d{3}))(-)(11|0?[469])(-)(30|[12][0-9]|0?[1-9])$)|(^((1[8-9]d{2})|([2-9]d{3}))(-)(0?2)(-)(2[0-8]|1[0-9]|0?[1-9])$)|(^([2468][048]00)(-)(0?2)(-)(29)$)|(^([3579][26]00)(-)(0?2)(-)(29)$)|(^([1][89][0][48])(-)(0?2)(-)(29)$)|(^([2-9][0-9][0][48])(-)(0?2)(-)(29)$)|(^([1][89][2468][048])(-)(0?2)(-)(29)$)|(^([2-9][0-9][2468][048])(-)(0?2)(-)(29)$)|(^([1][89][13579][26])(-)(0?2)(-)(29)$)|(^([2-9][0-9][13579][26])(-)(0?2)(-)(29)$))/);
var value = str.match(/^(d{1,4})(-|/)(d{1,2})2(d{1,2})$/);
if (value == null) {
return false;
}
else {
var date = new Date(value[1], value[3] - 1, value[4]);
return (date.getFullYear() == value[1] && (date.getMonth() + 1) == value[3] && date.getDate() == value[4]);
}
}
/**
* Check whether the time format is correct
* Input: str string
* Return: true or flase; true means the format is correct
* Verify time (10:57:10)
*/
function checkTime(str){
var value = str.match(/^(d{1,2})(:)?(d{1,2})2(d{1,2})$/)
if (value == null) {
return false;
}
else {
if (value[1] > 24 || value[3] > 60 || value[4] > 60) {
return false
}
else {
return true;
}
}
}
/**
* Check whether the full date and time format is correct
* Input: str string
* Return: true or flase; true means the format is correct
* (2007-06-05 10:57:10)
*/
function checkFullTime(str){
//var value = str.match(/^(d{1,4})(-|/)(d{1,2})2(d{1,2}) (d{1,2}):(d{1,2}):(d{1,2})$/);
var value = str.match(/^(?:19|20)[0-9][0-9]-(?:(?:0[1-9])|(?:1[0-2]))-(?:(?:[0-2][1-9])|(?:[1-3][0-1])) (?:(?:[0-2][0-3])|(?:[0-1][0-9])):[0-5][0-9]:[0-5][0-9]$/);
if (value == null) {
return false;
}
else {
//var date = new Date(checkFullTime[1], checkFullTime[3] - 1, checkFullTime[4], checkFullTime[5], checkFullTime[6], checkFullTime[7]);
//return (date.getFullYear() == value[1] && (date.getMonth() + 1) == value[3] && date.getDate() == value[4] && date.getHours() == value[5] && date.getMinutes() == value[6] && date.getSeconds() == value[7]);
return true;
}

}
 

/**************************************************************************************/
/**************************************Verification of ID number************ **************************/
/**************************************************************************************/
/**
* 15-digit coding rules for ID cards: dddddd yymmdd xx p
* dddddd: area code
* yymmdd: date of birth
* xx: sequential coding, cannot be determined
* p: gender, odd numbers are male, even numbers are female
*


* ID card 18-digit coding rules: dddddd yyyymmdd xxx y
* dddddd: area code
* yyyymmdd: date of birth
* xxx: sequential coding, cannot be determined, odd numbers are male, Even numbers are female
* y: Check code, the value of this digit can be obtained by calculating the first 17 digits
*


* The weighting factor of the 18-digit number is (from right to left) Wi = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2,1 ]
* Verification bit Y = [ 1, 0, 10, 9, 8, 7 , 6, 5, 4, 3, 2 ]
* Check digit calculation formula: Y_P = mod( ∑(Ai×Wi),11 )
* i is 2...18 of the ID card number counting from right to left bit; Y_P is the position of the check code array where the foot check code is located
*
*/
var Wi = [7, 9, 10, 5, 8 , 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1];// Weighting factor
var ValideCode = [1, 0, 10, 9, 8, 7, 6 , 5, 4, 3, 2];// ID card verification bit value. 10 represents X
function IdCardValidate(idCard){
idCard = trim(idCard.replace(/ /g, ""));
if (idCard .length == 15) {
return isValidityBrithBy15IdCard(idCard);
}
else
if (idCard.length == 18) {
var a_idCard = idCard.split("");// Get the ID card array
if ( IsvalidityBRIDHBY18idCard (IDCard) && iStrueValidateCodeby18idcard (A_IDCARD) {
Return True; AReturn false;
}}}
/**
* Determine whether the last verification digit is correct when the ID number is 18 digits
* @param a_idCard ID card number array
* @return
*/
Function isTrueValidateCodeBy18IdCard(a_idCard){
var sum = 0; // Declare the weighted sum variable
if (a_idCard[17].toLowerCase() == 'x') {
a_idCard[17] = 10; // Change the last bit to Replace the verification code of valCodePosition = sum % 11; // Get the verification code position
if (a_idCard[17] == ValideCode[valCodePosition]) {
return true;
}
else {
return false;
}
}
/**
* Determine whether you are male or female by ID card
* @param idCard 15/18-digit ID number
* @return 'female'-female, 'male'-male
*/
function maleOrFemalByIdCard(idCard){
idCard = trim(idCard.replace(/ /g, ""));// Process the ID number. Include spaces between characters.
if (idCard.length == 15) {
if (idCard.substring(14, 15) % 2 == 0) {
return 'female';
}
else {
return 'male';
}
}
else
if (idCard.length == 18) {
if (idCard.substring(14, 17) % 2 == 0) {
return 'female';
}
else {
return 'male';
}
}
else {
return null;
}
}
/**
* Verify whether the birthday in the 18-digit ID card number is a valid birthday
* @param idCard 18-digit ID card string
* @return
*/
function isValidityBrithBy18IdCard(idCard18){
var year = idCard18.substring(6, 10);
var month = idCard18.substring( 10, 12);
var day = idCard18.substring(12, 14);
var temp_date = new Date(year, parseFloat(month) - 1, parseFloat(day));
// Use getFullYear() here to get the year , to avoid the Y2K problem
if (temp_date.getFullYear() != parseFloat(year) ||
temp_date.getMonth() != parseFloat(month) - 1 ||
temp_date.getDate() != parseFloat(day)) {
return false;
}
else {
return true;
}
}
/**
* Verify whether the birthday in the 15-digit ID number is a valid birthday
* @param idCard15 15-digit ID card string
* @return
*/
function isValidityBrithBy15IdCard(idCard15){
var year = idCard15.substring(6, 8);
var month = idCard15.substring(8, 10);
var day = idCard15.substring(10, 12);
var temp_date = new Date(year, parseFloat(month) - 1, parseFloat(day));
// For old Your age in the ID card does not need to consider the Y2K problem and use the getYear() method
if (temp_date.getYear() != parseFloat(year) ||
temp_date.getMonth() != parseFloat(month) - 1 | |
temp_date.getDate() != parseFloat(day)) {
return false;
}
else {
return true;
}
}
//Remove leading and trailing spaces from the string
function trim(str){
return str.replace(/(^s*)|(s*$)/g, "");
}



Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use