search
HomeWeb Front-endJS TutorialJavaScript form validation encyclopedia
JavaScript form validation encyclopediaNov 26, 2016 am 10:11 AM
javascript

<script><br/>function test()<br/>{<br/>if(document.a.b.value.length>50)<br/>{<br/>alert("Cannot exceed 50 characters!");<br/>document.a.b.focus();<br/>return false ;<br/>}<br/>}<br/></script>




2. Can only be Chinese characters

3. Only Can it be in English

<script><br/>function onlyEng()<br/>{<br/>if(!(event.keyCode>=65&&event.keyCode<=90))<br/>event.returnvalue=false;<br/>}<br/></script>

;=96&&event.keyCode//Consider the numeric keys on the small keyboard

event.returnvalue=false;

}





5. Only in English Characters and numbers

('text',clipboardData.getData('text').replace (/[^d]/g,''))">

6. Verify email format




7. Block keywords ( *** and **** are blocked here)

<script><br/>function test() {<br/>if((a.b.value.indexOf ("***") == 0)||(a.b.value.indexOf ( "****") == 0)){<br/>alert(":)");a.b.focus();<p>return false;}}<p></script>




8. Are the passwords entered twice the same?




<script></script>

function check()

{
with(document.all){
if(input1.value!=input2.value )
{
alert("false")
input1.value = "";
input2.value = "";
}
else document.forms[0].submit();
}
}
> ;


That’s enough:)
It’s cool to shield the right click

oncontextmenu="return false"

Add it to the body



2.1 The form item cannot be empty

<script></script>

function CheckForm()
{if (document.form.name.value.length == 0) {

alert("Please enter your name!");

document.form.name.focus();

return false;
}
return true;
}
-->


2.2 Compare whether the values ​​of two form items are the same

<script><br/><!--<br/>function CheckForm( )<br/>if (document.form.PWD.value != document.form.PWD_Again.value) {</script>

alert("The passwords you entered twice are different! Please re-enter.");

document.ADDUser.PWD.focus();

return false;

}
return true;
}
-->


2.3 Form items can only be numbers and "_", used for phone/bank account verification, can be extended to domain name registration, etc.

<script><br/><!--<br/>function isNumber(String)<br/>{</script>

var Letters = "1234567890-"; / /You can add input values ​​by yourself

var i;

var c;

if(String.charAt(0)=='-')
return false;
if(String.charAt(String.length - 1) == ' -' )
return false;
for( i = 0; i {
c = String.charAt( i );
if (Letters.indexOf( c ) return false;
}
return true;
}
function CheckForm()
{
if(! isNumber(document.form.TEL.value)) {
alert("Your phone number is illegal!");
document.form.TEL.focus();
return false;
}
return true;
}
-->



2.4 Form item input value/length limit

<script> <br/><!--<br/>function CheckForm()</script>

{

if (document.form.count.value > 100 || document.form.count.value {

alert("The input value cannot be less than zero Greater than 100!");

document.form.count.focus();
return false;
}
if (document.form.MESSAGE.value.length{
alert("The input text is less than 10!" );
document.form.MESSAGE.focus();
return false;
}
return true;
}
//-->

2.5 Chinese/English/numeric/email address validity judgment

<script><br/><!--<br/>function isEnglish(name) //English value detection<br/>{<br/>if(name.length == 0)<br/>return false;<br/>for(i = 0; i < name.length; i++) {<br/>if(name.charCodeAt(i) > 128)<br/>return false;<br/>}<br/>return true;<br/>}<br/>function isChinese(name) //Chinese value detection<br/>{<br/>if(name.length == 0)<br/>return false;<br/>for(i = 0; i < name.length; i++) {<br/>if(name.charCodeAt(i) > 128 )<br/>return true;<br/>}<br/>return false;<br/>}<br/>function isMail(name) //E-mail value detection<br/>{<br/>if(! isEnglish(name))<br/>return false;<br/>i = name.indexOf(" at ");<br/>j = name dot lastIndexOf(" at ");<br/>if(i == -1)<br/>return false;<br/>if(i != j)<br/>return false;<br/>if(i == name dot length) <br/>return false;<br/>return true;<br/>}<br/>function isNumber(name) //Number detection<br/>{<br/>if(name.length == 0)<br/>return false;<br/>for(i = 0; i < name.length; i++) {<br/>if(name.charAt(i) < "0" || name.charAt(i) > "9")<br/>return false;<br/>}<br/>return true;<br/>}<br/>function CheckForm()<br/>{ <br/>if(! isMail(form.Email.value)) {<br/>alert("Your email is invalid!");<br/>form.Email.focus();<br/>return false;<br/>}<br/>if(! isEnglish(form .name.value)) {<br/>alert("The English name is illegal!");<br/>form.name.focus();<br/>return false;<br/>}<br/>if(! isChinese(form.cnname.value)) {<br/>alert ("The Chinese name is illegal! ");<br/>form.cnname.focus();<br/>return false;<br/>}<br/>if(! isNumber(form.PublicZipCode.value)) {<br/>alert("The postal code is illegal!");<br/>form.PublicZipCode.focus ();<br/>return false;<br/>}<br/>return true;<br/>}<br/>//--><br/></script>

2.6 Limit the characters that cannot be entered in the form item

<script><br/><!-- <br/>function contain(str,charset)//String contains test function<br/>{<br/>var i;<br/>for(i=0;i<charset.length;i++)<br/>if(str.indexOf(charset.charAt(i)) >=0)<br/>return true;<br/>return false;<br/>}<br/>function CheckForm()<br/>{<br/>if ((contain(document.form.NAME.value, "%()><")) || ( contain(document.form.MESSAGE.value, "%</script>

()>{
alert("Illegal characters entered");
document.form.NAME.focus();
return false;
}
return true;
}
//-->

1. Check whether a string consists entirely of numbers
------------- ---------------------------


& lt; script & gt; & lt;!-
Function Checknum (STR) {Return Str.match ( +​
---------------------------------------
if (/[^x00-xff]/ g.test(s)) alert("Contains Chinese characters");      
else alert("All characters"); --------------------------
if (escape(str).indexOf("%u")!=-1) alert("Contains Chinese characters ");
else alert("All characters");

4. Email format verification
----------------------------- -----------
//Function name: chkemail
//Function introduction: Check whether it is an Email Address
//Parameter description: The string to be checked
//Return value: 0: not 1 :Yes
function chkemail(a)

{ var i=a.length;

var temp = a.indexOf('@');
var tempd = a.indexOf('.');
if (temp > 1 ) {
if ((i-temp) > 3){
if ((i-tempd)>0){
return 1;
}

}
}
return 0;
}

5. Number Format verification
---------------------------------------------

//Function name: fucCheckNUM

//Function introduction: Check whether it is a number
//Parameter description: The number to be checked
//Return value: 1 means it is a number, 0 means it is not a number
function fucCheckNUM(NUM)

{

var i,j,strTemp;
strTemp="0123456789";
if (NUM.length== 0)
return 0
for (i=0;i{
j=strTemp.indexOf(NUM.charAt(i) );
if (j==-1)
{
//Indicates that the character is not a number
return 0;
}
}
//Indicates that it is a number
return 1;
}

6. Phone number format verification
---------------------------------------------
// Function name: fucCheckTEL
//Function introduction: Check whether it is a phone number
//Parameter description: The string to be checked
//Return value: 1 is legal, 0 is illegal
function fucCheckTEL(TEL)
{
var i,j,strTemp;
strTemp="0123456789-()# ";
for (i=0;i{
j=strTemp.indexOf(TEL.charAt(i));
if (j==-1)
{
//Indicates that the characters are illegal
return 0;
}
}
//Indicates that it is legal www.2cto.com
return 1;
}

7. Determine whether the input is a Chinese function
---------------------------------------------
function ischinese(s) {
var ret=true;
for(var i=0;iret=ret && (s.charCodeAt(i)>=10000);
return ret;
}

8 . Comprehensive function to judge the legality of user input
------------------------------------------------ -
<script><br/>//Start by limiting the number of digits to be entered<br/>//m is user input, n is the number of digits to be limited<br/>function issmall(m,n)<br/>{<br/>if ((m<n) && (m>0))<br/>{<br/>return(false);<br/>}<br/>else<br/>{return(true);}<br/>}</script>

9. Determine whether the passwords are entered consistently
------------ --------------------------
function issame(str1,str2)
{
if (str1==str2)
{return(true );}
else
{return(false);}
}

10. Determine whether the user name is a numeric letter underline
--------------------- ------------------
function notchinese(str){
var reg=/[^A-Za-z0-9_]/g
if (reg.test(str )){
return (false);
}else{
return(true); }
}

11. General verification function for form text field
-------------------------- --------------------------
Function: Detect all input text that must be non-empty, such as name, account number, email address, etc.
This check is now only for the text field. If you want to target other field objects in the form, you can change the judgment conditions.

How to use: Add title text to the text field to be detected. The text is the prompt information. You want to prompt the Chinese name of the field to the user. For example, if you want to detect

username
html as follows , of course, it is best to use a visual tool such as Dreamweaver to edit the domain.
If you want to detect numeric type data, then unify the domain ID to sz.
It is troublesome for JavaScript to determine the date type, so there is no program for date type verification. Experts can add.

The program is relatively crude, I just provide an idea. Throw some bricks to attract good news! :)
Oh, by the way, function calling method:

function dovalidate()
{
fm=document.forms[0] //Only detect one form, if there are multiple, you can change the judgment condition
for (i=0;i{
//Detection and judgment conditions, which can be modified according to different types
if(fm[i].tagName.toUpperCase()=="INPUT" &&fm[i]. type.toUpperCase()=="TEXT" && (fm[i].title!=""))

if(fm[i].value="/blog/="")//
{
str_warn1= fm[i].title+"Can't be empty!";
alert(str_warn1);
fm[i].focus();
return false; }
if(fm[i].id.toUpperCase()== "SZ")//Digital verification
                                                                                                                                                                         fm[i] .focus();
                                                                    return false;

<script><br/><! --<br/>function CheckForm()<br/>{<br/>if (document.form.name.value.length == 0) {<br/>alert("Please enter your name!");<br/>document.form.name.focus();<br/> return false;<br/>}</script>

return true;

}
-->


2.2 Compare whether the values ​​of two form items are the same

<script><br/><!--<br/>function CheckForm()<br/>if (document.form.PWD.value != document.form.PWD_Again.value) {<br/>alert("The passwords you entered twice are different! Please re-enter.");<br/>document.ADDUser.PWD.focus();<br/>return false;<br/>}<br/>return true;<br/>}<br/>--><br/></script>

2.3 Form items can only be numbers and "_", used for phone/bank account verification, can be extended to domain name registration, etc.

<script><br/><!--<br/>function isNumber(String)<br/>{<br/>var Letters = "1234567890-"; / /You can add input values ​​by yourself<br/>var i;<br/>var c;<br/>if(String.charAt(0)=='-')<br/>return false;<br/>if(String.charAt(String.length - 1) == ' -' )<br/>return false;<br/>for( i = 0; i < String.length; i ++ )<br/>{<br/>c = String.charAt( i );<br/>if (Letters.indexOf( c ) < 0) <br/>return false;<br/>}<br/>return true;<br/>}<br/>function CheckForm()<br/>{<br/>if(! isNumber(document.form.TEL.value)) {<br/>alert("Your phone number is illegal!");<br/> document.form.TEL.focus();<br/>return false;<br/>}<br/>return true;<br/>}<br/>--><br/></script>


2.4 Form item input value/length limit

<script> <br/><!--<br/>function CheckForm()<br/>{<br/>if (document.form.count.value > 100 || document.form.count.value < 1)<br/>{<br/>alert("The input value cannot be less than zero Greater than 100!");<br/>document.form.count.focus();<br/>return false;<br/>}<br/>if (document.form.MESSAGE.value.length<10)<br/>{<br/>alert("The input text is less than 10!" );<br/>document.form.MESSAGE.focus();<br/>return false;<br/>}<br/>return true;<br/>}<br/>//--><br/></script>

2.5 Chinese/English/numeric/email address is legal Sex judgment

<script><br/><!--</script>

function isEnglish(name) //English value detection
{
if(name.length == 0)
return false;
for(i = 0; i if(name.charCodeAt(i) > 128)
return false;
}
return true;
}

function isChinese(name) //Chinese value detection
{
if (name.length == 0)
return false;
for(i = 0; i if(name.charCodeAt(i) > 128)
return true;
}
return false;
}

function isMail(name) //E-mail value detection
{
if(! isEnglish(name))
return false;
i = name.indexOf(" at ");
j = name dot lastIndexOf(" at ");
if(i == -1)
return false;
if(i != j)
return false;
if(i == name dot length)
return false;
return true;
}

function isNumber(name) //Numerical detection
{
if(name.length == 0)
return false;
for(i = 0; i if(name .charAt(i) "9")
return false;
}
return true;
}

function CheckForm()
{
if(! isMail( form.Email.value)) {
alert("Your email is illegal! ");
form.Email.focus();
return false;
}
if(! isEnglish(form.name.value)) {
alert("The English name is illegal!");
form.name.focus ();
return false;
}
if(! isChinese(form.cnname.value)) {
alert("The Chinese name is illegal!");
form.cnname.focus();
return false;
}
if(! isNumber(form.PublicZipCode.value)) {
alert("The postal code is illegal!");
form.PublicZipCode.focus();
return false;
}
return true;
}
// -->

2.6 Limit the characters that cannot be entered in the form item

<script><br/><!--</script>

function contain(str,charset)//The string contains the test function
{
var i;
for(i=0;iif(str.indexOf(charset.charAt(i))>=0)
return true;
return false;
}

function CheckForm()
{
if ((contain(document.form.NAME.value, "%()>

() >{
alert("Illegal characters entered");
document.form.NAME.focus();
return false;
}
return true;
}
//--> ;


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

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

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.