search
HomeWeb Front-endJS TutorialJavaScript technology often used in b/s development_javascript skills

1. Verification category
1. Within digital verification
1.1 Integer
1.2 Integer greater than 0 (used for verification of passed ID)
1.3 Verification of negative integer
1.4 Integer cannot be greater than iMax
1.5 The integer cannot be less than iMin
2. Time class
2.1 Short time, in the form of (13:04:06)
2.2 Short date, in the form of (2003-12-05)
2.3 Long time, in the shape of (2003-12-05 13:04:06)
2.4 Only year and month. In the form of (2003-05, or 2003-5)
2.5 Only hours and minutes, in the form of (12:03)
3. Form class
3.1 All form values ​​cannot be empty
3.2 The value of the multi-line text box cannot be empty.
3.3 The value of the multi-line text box cannot exceed sMaxStrleng
3.4 The value of the multi-line text box cannot be less than sMixStrleng
3.5 Determine whether the radio button is selected.
3.6 Determine whether the check box is selected.
3.7 Select all check boxes, multiple selections, unselect all, inverse selection
3.8 Determine the file type during file uploading
4. Character type
4.1 The judgment characters are all composed of letters from a-Z or A-Z
4.2 The judgment characters are composed of letters and numbers.
4.3 Judgment characters are composed of letters, numbers, underscores, and dots. The beginning can only be an underscore and a letter
4.4 String replacement function.Replace();
5. Browser class
5.1 Determine the browser type
5.2 Determine the ie version
5.3 Determine the resolution of the client

6. Combined class
6.1 Determine email.
6.2 Verification of mobile phone number
6.3 Verification of ID card


2. Functional category

1. Time and related controls
1.1 Calendar
1.2 Time control
1.3 Perpetual calendar
1.4 Display dynamic display clock effect (text, such as time in OA)
1.5 Display dynamic display clock effect (image, like watch)
2. Form class
2.1 Automatically generate forms
2.2 Dynamically add, modify, and delete elements in the drop-down box
2.3 Drop-down box where content can be entered
2.4 Only iMax text can be entered in the multi-line text box. If you input too much, it will be automatically reduced to iMax text (mostly used for sending text messages)

3. Print class
3.1 Print control
4. Event class
4.1 Shield right click
4.2 Block all function keys
4.3 --> and 4.4 Block key combination ctrl N
5. Web design class
5.1 Continuously scrolling text and pictures (note It is continuous, and there is no blank space between the two paragraphs of text and pictures)
5.2 HTML editing control class
5.3 Color selection box control
5.4 Drop-down menu
5.5 Two-layer or multi-level drop-down menu
5.6 IE menu-like buttons. (The effect is like the navigation column of rongshuxa.com)
5.7 Dynamic effects of status bar and title bar (there are many examples, you can study them)
5.8 After double-clicking, the web page automatically scrolls
6. Tree structure.
6.1 asp SQL version
6.2 asp xml sql version
6.3 java sql or java sql xml
7. Production of borderless effect
8. Linked drop-down box technology
9. Text sorting


1. Verification type
1. Numeric verification
1.1 Integer
/^(-| )?d $/.test(str)
1.2 An integer greater than 0 (used for verification of the passed ID)
/^d $/.test(str)
1.3 Verification of negative integers
/^-d $/.test(str)
2. Time class
2.1 Short time, in the form of (13:04:06)
function isTime(str)
{
var a = str.match(/^(d{1 ,2})(:)?(d{1,2})2(d{1,2})$/);
if (a == null) {alert('The input parameter is not in time format' ); return false;}
if (a[1]>24 || a[3]>60 || a[4]>60)
{
alert("The time format is incorrect");
return false
}
return true; 🎜>       {
var r = str.match(/^(d{1,4})(-|/)(d{1,2})2(d{1,2})$/);
If(r= =null)return false;
var d= new Date(r[1], r[3]-1, r[4]);
return (d.getFullYear()==r[1]&& (d.getMonth() 1)==r[3]&&d.getDate()==r[4]);
  }
2.3 long time, shaped like (2003-12-05 13:04: 06)
function strDateTime(str)
{
var reg = /^(d{1,4})(-|/)(d{1,2})2(d{1,2 }) (d{1,2}):(d{1,2}):(d{1,2})$/;
var r = str.match(reg);
if(r ==null)return false;
var d= new Date(r[1], r[3]-1,r[4],r[5],r[6],r[7]);
       return (d.getFullYear()==r[1]&&(d.getMonth() 1)==r[3]&&d.getDate()==r[4]&&d.getHours()==r[ 5]&&d.getMinutes()==r[6]&&d.getSeconds()==r[7]);
  }
2.4 Only year and month. In the form of (2003-05, or 2003-5)
2.5 Only hours and minutes, in the form of (12:03)
3. Form class
3.1 All form values ​​cannot be empty
 

3.2 The value of the multi-line text box cannot be empty.
3.3 The value of the multi-line text box cannot exceed sMaxStrleng
3.4 The value of the multi-line text box cannot be less than sMixStrleng 3.5 Determine whether the radio button is selected.
3.6 Determine whether the check box is selected.
3.7 Select all check boxes, multiple selections, unselect all, inverse selection
3.8 Determine the file type during file uploading
4. Character type
4.1 The judgment characters are all composed of letters from a-Z or A-Z


4.2 The judgment characters are composed of letters and numbers.
4.3 Judging the characters consisting of letters and numbers, scratching lines, point numbers. And the beginning can only be the lower line and letter
/^([a-za-z _] {1}) ( [w]*)$/g.test(str)
4.4 String replacement function.Replace();
5. Browser class
5.1 Determine the browser type
window.navigator. appName
5.2 Determine the version of IE
Window.navigator.appVersion
5.3 Determine the resolution of the client
Window.screen.height; window.screen.width;

6. Combination Class
6.1 Judgment of email.
function ismail(mail)
{
return(new RegExp(/^w ((-w )|(.w ))*@[A-Za-z0-9] ((.|- )[A-Za-z0-9] )*.[A-Za-z0-9] $/).test(mail));
  }
6.2 Verification of mobile phone number
6.3 ID card Verification of
function isIdCardNo(num)
{
if (isNaN(num)) {alert("The input is not a number!"); return false;}
var len = num.length, re;
if (len == 15)
re = new RegExp(/^(d{6})()?(d{2})(d{2})(d{2})( d{3})$/);
else if (len == 18)
re = new RegExp(/^(d{6})()?(d{4})(d{2} ; match(re); " /" a[4] "/" a[5]);
var B = D.getYear()==a[3]&&(D.getMonth() 1)==a[4]&&D.getDate ()==a[5];
                                                                                                
var B = D.getFullYear()==a[3]&&(D.getMonth() 1)==a[4]&&D.getDate()==a[5];
}
          if (!B) {alert("The date of birth in the entered ID number " a[0] " is incorrect! "); return false;}
return true;
🎜>
Select all

















Select all















<script> <BR>function checkAll(str) <BR>{ <BR> var a = document.getElementsByName(str); <BR> var n = a.length; <BR> for (var i=0; i<n; i++) <BR> a[i].checked = window.event.srcElement.checked; <BR>} <BR>function checkItem(str) <BR>{ <BR> var e = window.event.srcElement; <BR> var all = eval("document.hrong."+ str); <BR> if (e.checked) <BR> { <BR> var a = document.getElementsByName(e.name); <BR> all.checked = true; <BR> for (var i=0; i<a.length; i++) <BR> { <BR> if (!a[i].checked){ all.checked = false; break;} <BR> } <BR> } <BR> else all.checked = false; <BR>} <BR></script>

3.8 文件上传过程中判断文件类型


画图:
id=S 
style="LEFT: 0px; WIDTH: 392px; TOP: 0px; HEIGHT: 240px" 
height=240 
width=392 
classid="clsid:369303C2-D7AC-11D0-89D5-00A0C90833E6">

<script> <BR>S.DrawingSurface.ArcDegrees(0,0,0,30,50,60); <BR>S.DrawingSurface.ArcRadians(30,0,0,30,50,60); <BR>S.DrawingSurface.Line(10,10,100,100); <BR></script>

写注册表:
<script> <BR>var WshShell = WScript.CreateObject("WScript.Shell"); <BR>WshShell.RegWrite ("HKCU\\Software\\ACME\\FortuneTeller\\", 1, "REG_BINARY"); <BR>WshShell.RegWrite ("HKCU\\Software\\ACME\\FortuneTeller\\MindReader", "Goocher!", "REG_SZ"); <BR>var bKey = WshShell.RegRead ("HKCU\\Software\\ACME\\FortuneTeller\\"); <BR>WScript.Echo (WshShell.RegRead ("HKCU\\Software\\ACME\\FortuneTeller\\MindReader")); <BR>WshShell.RegDelete ("HKCU\\Software\\ACME\\FortuneTeller\\MindReader"); <BR>WshShell.RegDelete ("HKCU\\Software\\ACME\\FortuneTeller\\"); <BR>WshShell.RegDelete ("HKCU\\Software\\ACME\\"); <BR></script>

TABLAE相关(客户端动态增加行列)

<script> <BR>function numberCells() { <BR> var count=0; <BR> for (i=0; i < document.all.mytable.rows.length; i++) { <BR> for (j=0; j < document.all.mytable.rows(i).cells.length; j++) { <BR> document.all.mytable.rows(i).cells(j).innerText = count; <BR> count++; <BR> } <BR> } <BR>} <BR></script>





       
       
       


 

1.身份证严格验证:

<script> <BR>var aCity={11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古",21:"辽宁",22:"吉林",23:"黑龙江",31:"上海",32:"江苏",33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山东",41:"河南",42:"湖北",43:"湖南",44:"广东",45:"广西",46:"海南",50:"重庆",51:"四川",52:"贵州",53:"云南",54:"西藏",61:"陕西",62:"甘肃",63:"青海",64:"宁夏",65:"新疆",71:"台湾",81:"香港",82:"澳门",91:"国外"} <br><br>function cidInfo(sId){ <BR> var iSum=0 <BR> var info="" <BR> if(!/^\d{17}(\d|x)$/i.test(sId))return false; <BR> sId=sId.replace(/x$/i,"a"); <BR> if(aCity[parseInt(sId.substr(0,2))]==null)return "Error:非法地区"; <BR> sBirthday=sId.substr(6,4)+"-"+Number(sId.substr(10,2))+"-"+Number(sId.substr(12,2)); <BR> var d=new Date(sBirthday.replace(/-/g,"/")) <BR> if(sBirthday!=(d.getFullYear()+"-"+ (d.getMonth()+1) + "-" + d.getDate()))return "Error:非法生日"; <BR> for(var i = 17;i>=0;i --) iSum += (Math.pow(2,i) % 11) * parseInt(sId.charAt(17 - i),11) <BR> if(iSum%11!=1)return "Error:非法证号"; <BR> return aCity[parseInt(sId.substr(0,2))]+","+sBirthday+","+(sId.substr(16,1)%2?"男":"女") <BR>} <br><br>document.write(cidInfo("380524198002300016"),"<br/>"); <BR>document.write(cidInfo("340524198002300019"),"<br/>") <BR>document.write(cidInfo("340524197711111111"),"<br/>") <BR>document.write(cidInfo("34052419800101001x"),"<br/>"); <BR></script>

2.验证IP地址
<script> <BR>function isip(s){ <BR> var check=function(v){try{return (v<=255 && v>=0)}catch(x){return false}}; <BR> var re=s.split(".") <BR> return (re.length==4)?(check(re[0]) && check(re[1]) && check(re[2]) && check(re[3])):false <BR>} <br><br>var s="202.197.78.129"; <BR>alert(isip(s)) <BR></script>

 

3.加sp1后还能用的无边框窗口!!



Chromeless Window

<script> <BR>/*--- Special Thanks For andot ---*/ <br><br>/* <BR> This following code are designed and writen by Windy_sk <seasonx@163.net> <BR> You can use it freely, but u must held all the copyright items! <BR>*/ <br><br>/*--- Thanks For andot Again ---*/ <br><br>var CW_width = 400; <BR>var CW_height = 300; <BR>var CW_top = 100; <BR>var CW_left = 100; <BR>var CW_url = "/"; <BR>var New_CW = window.createPopup(); <BR>var CW_Body = New_CW.document.body; <BR>var content = ""; <BR>var CSStext = "margin:1px;color:black; border:2px outset;border-style:expression(onmouseout=onmouseup=function(){this.style.borderStyle='outset'}, onmousedown=function(){if(event.button!=2)this.style.borderStyle='inset'});background-color:buttonface;width:16px;height:14px;font-size:12px;line-height:11px;cursor:Default;"; <br><br>//Build Window <BR>include.startDownload(CW_url, function(source){content=source}); <br><br>function insert_content(){ <BR> var temp = ""; <BR> CW_Body.style.overflow = "hidden"; <BR> CW_Body.style.backgroundColor = "white"; <BR> CW_Body.style.border = "solid black 1px"; <BR> content = content.replace(/<a ([^>]*)>/g,"<a onclick='parent.open(this.href);return false' $1>"); <BR> temp += "<table width=100% height=100% cellpadding=0 cellspacing=0 border=0>"; <BR> temp += "<tr style=';font-size:12px;background:#0099CC;height:20;cursor:default' ondblclick=\"Max.innerText=Max.innerText=='1'?'2':'1';parent.if_max=!parent.if_max;parent.show_CW();\" onmouseup='parent.drag_up(event)' onmousemove='parent.drag_move(event)' onmousedown='parent.drag_down(event)' onselectstart='return false' oncontextmenu='return false'>"; <BR> temp += "<td style='color:#ffffff;padding-left:5px'>Chromeless Window For IE6 SP1"; <BR> temp += "<td style='color:#ffffff;padding-right:5px;' align=right>"; <BR> temp += "<span id=Help onclick=\"alert('Chromeless Window For IE6 SP1 - Ver 1.0\\n\\nCode By Windy_sk\\n\\nSpecial Thanks For andot')\" style=\""+CSStext+"font-family:System;padding-right:2px;\">?"; <BR> temp += "<span id=Min onclick='parent.New_CW.hide();parent.blur()' style=\""+CSStext+"font-family:Webdings;\" title='Minimum'>0"; <BR> temp += "<span id=Max onclick=\"this.innerText=this.innerText=='1'?'2':'1';parent.if_max=!parent.if_max;parent.show_CW();\" style=\""+CSStext+"font-family:Webdings;\" title='Maximum'>1"; <BR> temp += "<span id=Close onclick='parent.opener=null;parent.close()' style=\""+CSStext+"font-family:System;padding-right:2px;\" title='Close'>x"; <BR> temp += "<tr><td colspan=2>"; <BR> temp += "<div id=include style='overflow:scroll;overflow-x:hidden;overflow-y:auto; HEIGHT: 100%; width:"+CW_width+"'>"; <BR> temp += content; <BR> temp += ""; <BR> temp += ""; <BR> CW_Body.innerHTML = temp; <BR>} <br><br>setTimeout("insert_content()",1000); <br><br>var if_max = true; <BR>function show_CW(){ <BR> window.moveTo(10000, 10000); <BR> if(if_max){ <BR> New_CW.show(CW_top, CW_left, CW_width, CW_height); <BR> if(typeof(New_CW.document.all.include)!="undefined"){ <BR> New_CW.document.all.include.style.width = CW_width; <BR> New_CW.document.all.Max.innerText = "1"; <BR> } <br><br> }else{ <BR> New_CW.show(0, 0, screen.width, screen.height); <BR> New_CW.document.all.include.style.width = screen.width; <BR> } <BR>} <br><br>window.onfocus = show_CW; <BR>window.onresize = show_CW; <br><br>// Move Window <BR>var drag_x,drag_y,draging=false <br><br>function drag_move(e){ <BR> if (draging){ <BR> New_CW.show(e.screenX-drag_x, e.screenY-drag_y, CW_width, CW_height); <BR> return false; <BR> } <BR>} <br><br>function drag_down(e){ <BR> if(e.button==2)return; <BR> if(New_CW.document.body.offsetWidth==screen.width && New_CW.document.body.offsetHeight==screen.height)return; <BR> drag_x=e.clientX; <BR> drag_y=e.clientY; <BR> draging=true; <BR> e.srcElement.setCapture(); <BR>} <br><br>function drag_up(e){ <BR> draging=false; <BR> e.srcElement.releaseCapture(); <BR> if(New_CW.document.body.offsetWidth==screen.width && New_CW.document.body.offsetHeight==screen.height) return; <BR> CW_top = e.screenX-drag_x; <BR> CW_left = e.screenY-drag_y; <BR>} <br><br></script>


电话号码的验证

要求:
  (1)电话号码由数字、"("、")"和"-"构成
  (2)电话号码为3到8位
  (3)如果电话号码中包含有区号,那么区号为三位或四位
  (4)区号用"("、")"或"-"和其他部分隔开
  (5)移动电话号码为11或12位,如果为12位,那么第一位为0
  (6)11位移动电话号码的第一位和第二位为"13"
  (7)12位移动电话号码的第二位和第三位为"13"
  根据这几条规则,可以与出以下正则表达式:
  (^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)


<script> <BR>function PhoneCheck(s) { <BR>var str=s; <BR>var reg=/(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)/ <BR>alert(reg.test(str)); <BR>} <BR></script>



具有在输入非数字字符不回显的效果,即对非数字字符的输入不作反应。
function numbersonly(field,event){
 var key,keychar;
 if(window.event){
  key = window.event.keyCode;
 }
 else if (event){
  key = event.which;
 }
 else{
  return true
 }
 keychar = String.fromCharCode(key);
 if((key == null)||(key == 0)||(key == 8)||(key == 9)||(key == 13)||(key == 27)){
  return true;
 }
 else if(("0123456789.").indexOf(keychar)>-1){
  window.status = "";
  return true;
 }
 else {
  window.status = "Field excepts numbers only";
  return false;
 }
}

验证ip 

str=document.RegExpDemo.txtIP.value;
if(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/.test(str)==false)
{
 window.alert('错误的IP地址格式');
 document.RegExpDemo.txtIP.select();
 document.RegExpDemo.txtIP.focus();
 return;
}
if(RegExp.$1254||RegExp.$2254||RegExp.$3254||RegExp.$4254)
{
 window.alert('错误的IP地址');
 document.RegExpDemo.txtIP.select();
 document.RegExpDemo.txtIP.focus();
 return;
}
//剔除 如  010.020.020.03 前面 的0 
var str=str.replace(/0(\d)/g,"$1");
str=str.replace(/0(\d)/g,"$1");
window.alert(str);

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
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

Load Box Content Dynamically using AJAXLoad Box Content Dynamically using AJAXMar 06, 2025 am 01:07 AM

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

How to Write a Cookie-less Session Library for JavaScriptHow to Write a Cookie-less Session Library for JavaScriptMar 06, 2025 am 01:18 AM

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)