This article summarizes common tool functions for JavaScript. Share it for your reference, as follows:
Add on method to element
= ; = function (event, fn) {、 []['forEach'].call(this, function (el) { (event, fn); }); return this; };
Add trigger method to element
= function(type, data) { var event = ("HTMLEvents"); (type, true, true); = data || {}; = type; = this; (event); return this; }; = function(event) { []["forEach"].call(this, function(el) { el["trigger"](event); }); return this; };
Escape html tags
function HtmlEncode(text) { return text .replace(/&/g, "&") .replace(/\"/g, '"') .replace(/</g, "<") .replace(/>/g, ">"); }
HTML tag escape
// HTML tag escape// @param {Array.<DOMString>} templateData string type tokens// @param {...} ..vals The operation result of the expression placeholder tokens// function SaferHTML(templateData) { var s = templateData[0]; for (var i = 1; i < ; i++) { var arg = String(arguments[i]); // Escape special characters in the substitution. s += arg .replace(/&/g, "&amp;") .replace(/</g, "&lt;") .replace(/>/g, "&gt;"); // Don't escape special characters in the template. s += templateData[i]; } return s; } // Callvar html = SaferHTML`<p>This is an introduction to string template</p>`;
Cross-browser binding events
function addEventSamp(obj, evt, fn) { if (!oTarget) { return; } if () { (evt, fn, false); } else if () { ("on" + evt, fn); } else { oTarget["on" + sEvtType] = fn; } }
Add to favorites
function addFavorite(sURL, sTitle) { try { (sURL, sTitle); } catch (e) { try { (sTitle, sURL, ""); } catch (e) { alert("Add to favorites failed, please use Ctrl+D to add"); } } }
Extract all URLs in the page code
var aa = .match( /(url\(|src=|href=)[\"\']*([^\"\'\(\)\<\>\[\] ]+)[\"\'\)]*|(http:\/\/[\w\-\.]+[^\"\'\(\)\<\>\[\] ]+)/gi ) .join("\r\n") .replace(/^(src=|href=|url\()[\"\']*|[\"\'\>\) ]*$/gim, ""); alert(aa);
Dynamically load script files
function appendscript(src, text, reload, charset) { var id = hash(src + text); if (!reload && in_array(id, evalscripts)) return; if (reload && $(id)) { $(id).($(id)); } (id); var scriptNode = ("script"); = "text/javascript"; = id; = charset ? charset : ? : ; try { if (src) { = src; = false; = function() { = true; JSLOADED[src] = 1; }; = function() { if ( ( == "loaded" || == "complete") && ! ) { = true; JSLOADED[src] = 1; } }; } else if (text) { = text; } ("head")[0].appendChild(scriptNode); } catch (e) {} }
General method to return to the top
function backTop(btnId) { var btn = (btnId); var d = ; var b = ; = set; = "none"; = function() { = "none"; = null; = setInterval(function() { -= (( + ) * 0.1); -= (( + ) * 0.1); if ( + == 0) clearInterval(, ( = set)); }, 10); }; function set() { = + > 100 ? "block" : "none"; } } backTop("goTop");
Implement base64 decoding
function base64_decode(data) { var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; var o1, o2, o3, h1, h2, h3, h4, bits, i = 0, ac = 0, dec = "", tmp_arr = []; if (!data) { return data; } data += ""; do { h1 = ((i++)); h2 = ((i++)); h3 = ((i++)); h4 = ((i++)); bits = (h1 << 18) | (h2 << 12) | (h3 << 6) | h4; o1 = (bits >> 16) & 0xff; o2 = (bits >> 8) & 0xff; o3 = bits & 0xff; if (h3 == 64) { tmp_arr[ac++] = (o1); } else if (h4 == 64) { tmp_arr[ac++] = (o1, o2); } else { tmp_arr[ac++] = (o1, o2, o3); } } while (i < ); dec = tmp_arr.join(""); dec = utf8_decode(dec); return dec; }
Confirm whether it is a valid input value on the keyboard
function checkKey(iKey) { if (iKey == 32 || iKey == 229) { return true; } /*Spaces and exceptions*/ if (iKey > 47 && iKey < 58) { return true; } /*number*/ if (iKey > 64 && iKey < 91) { return true; } /*letter*/ if (iKey > 95 && iKey < 108) { return true; } /*Number keypad 1*/ if (iKey > 108 && iKey < 112) { return true; } /*Number keypad 2*/ if (iKey > 185 && iKey < 193) { return true; } /*Symbol 1*/ if (iKey > 218 && iKey < 223) { return true; } /*Symbol 2*/ return false; }
Full-width half-width conversion
//iCase: 0 to half, 1 to half, others will not be convertedfunction chgCase(sStr, iCase) { if ( typeof sStr != "string" || <= 0 || !(iCase === 0 || iCase == 1) ) { return sStr; } var i, oRs = [], iCode; if (iCase) { /*Half->all*/ for (i = 0; i < ; i += 1) { iCode = (i); if (iCode == 32) { iCode = 12288; } else if (iCode < 127) { iCode += 65248; } ((iCode)); } } else { /*full->half*/ for (i = 0; i < ; i += 1) { iCode = (i); if (iCode == 12288) { iCode = 32; } else if (iCode > 65280 && iCode < 65375) { iCode -= 65248; } ((iCode)); } } return (""); }
Version comparison
function compareVersion(v1, v2) { v1 = ("."); v2 = ("."); var len = (, ); while ( < len) { ("0"); } while ( < len) { ("0"); } for (var i = 0; i < len; i++) { var num1 = parseInt(v1[i]); var num2 = parseInt(v2[i]); if (num1 > num2) { return 1; } else if (num1 < num2) { return -1; } } return 0; }
Compress CSS style code
function compressCss(s) { //Compress code s = (/\/\*(.|\n)*?\*\//g, ""); //Delete comments s = (/\s*([\{\}\:\;\,])\s*/g, "$1"); s = (/\,[\s\.\#\d]*\{/g, "{"); //Fault-tolerant processing s = (/;\s*;/g, ";"); //Clear continuous semicolons s = (/^\s*(\S+(\s+\S+)*)\s*$/); //Remove the beginning and end blank space return s == null ? "" : s[1]; }
Get the current path
var currentPageUrl = ""; if (typeof === "undefined") { currentPageUrl = ().toLowerCase(); } else { currentPageUrl = ().toLowerCase(); }
String length intercept
function cutstr(str, len) { var temp, icount = 0, patrn = /[^\x00-\xff]/, strre = ""; for (var i = 0; i < ; i++) { if (icount < len - 1) { temp = (i, 1); if ((temp) == null) { icount = icount + 1 } else { icount = icount + 2 } strre += temp } else { break; } } return strre + "..." }
Time and date format conversion
= function(formatStr) { var str = formatStr; var Week = ["day", "one", "two", "three", "Four", "five", "six"]; str = (/yyyy|YYYY/, ()); str = ( /yy|YY/, () % 100 > 9 ? (() % 100).toString() : "0" + (() % 100) ); str = ( /MM/, () + 1 > 9 ? (() + 1).toString() : "0" + (() + 1) ); str = (/M/g, () + 1); str = (/w|W/g, Week[()]); str = ( /dd|DD/, () > 9 ? ().toString() : "0" + () ); str = (/d|D/g, ()); str = ( /hh|HH/, () > 9 ? ().toString() : "0" + () ); str = (/h|H/g, ()); str = ( /mm/, () > 9 ? ().toString() : "0" + () ); str = (/m/g, ()); str = ( /ss|SS/, () > 9 ? ().toString() : "0" + () ); str = (/s|S/g, ()); return str; }; // or = function(format) { var o = { "M+": () + 1, //month "d+": (), //day "h+": (), //hour "m+": (), //minute "s+": (), //second "q+": ((() + 3) / 3), //quarter S: () //millisecond }; if (/(y+)/.test(format)) format = ( RegExp.$1, (() + "").substr(4 - RegExp.$) ); for (var k in o) { if (new RegExp("(" + k + ")").test(format)) format = ( RegExp.$1, RegExp.$ == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length) ); } return format; }; alert(new Date().format("yyyy-MM-dd hh:mm:ss"));
Cross-browser deletion event
function delEvt(obj, evt, fn) { if (!obj) { return; } if () { (evt, fn, false); } else if () { ("on" + evt, fn); } else { obj["on" + evt] = fn; } }
Determine whether it ends with a string
= function(s) { var d = - ; return d >= 0 && (s) == d; };
Return to script content
function evalscript(s) { if (("<script") == -1) return s; var p = /<script[^\>]*?>([^\x00]*?)<\/script>/gi; var arr = []; while ((arr = (s))) { var p1 = /<script[^\>]*?src=\"([^\>]*?)\"[^\>]*?(reload=\"1\")?(?:charset=\"([\w\-]+?)\")?><\/script>/i; var arr1 = []; arr1 = (arr[0]); if (arr1) { appendscript(arr1[1], "", arr1[2], arr1[3]); } else { p1 = /<script(.*?)>([^\x00]+?)<\/script>/i; arr1 = (arr[0]); appendscript("", arr1[2], arr1[1].indexOf("reload=") != -1); } } return s; }
Format CSS style code
function formatCss(s) { //Format code s = (/\s*([\{\}\:\;\,])\s*/g, "$1"); s = (/;\s*;/g, ";"); //Clear continuous semicolons s = (/\,[\s\.\#\d]*{/g, "{"); s = (/([^\s])\{([^\s])/g, "$1 {\n\t$2"); s = (/([^\s])\}([^\n]*)/g, "$1\n}\n$2"); s = (/([^\s]);([^\s\}])/g, "$1;\n\t$2"); return s; }
Get the cookie value
function getCookie(name) { var arr = (new RegExp("(^| )" + name + "=([^;]*)(;|$)")); if (arr != null) return unescape(arr[2]); return null; }
Get the GET parameter value in the URL
// Usage: If the address is ?t1=1&t2=2&t3=3, then you can get: GET["t1"], GET["t2"], GET["t3"]function getGet() { querystr = ("?"); if (querystr[1]) { GETs = querystr[1].split("&"); GET = []; for (i = 0; i < ; i++) { tmp_arr = ("="); key = tmp_arr[0]; GET[key] = tmp_arr[1]; } } return querystr[1]; }
Get the initialization size of the mobile device
function getInitZoom() { if (!this._initZoom) { var screenWidth = (, ); if (() && !()) { screenWidth = screenWidth / ; } this._initZoom = screenWidth / ; } return this._initZoom; }
Get page height
function getPageHeight() { var g = document, a = , f = , d = == "BackCompat" ? a : ; return (, , ); }
Get page scrollLeft
function getPageScrollLeft() { var a = document; return || ; }
Get page scrollTop
function getPageScrollTop() { var a = document; return || ; }
Get the visual height of the page
function getPageViewHeight() { var d = document, a = == "BackCompat" ? : ; return ; }
Get the visual width of the page
function getPageViewWidth() { var d = document, a = == "BackCompat" ? : ; return ; }
Get page width
function getPageWidth() { var g = document, a = , f = , d = == "BackCompat" ? a : ; return (, , ); }
Get the screen width of the mobile device
function getScreenWidth() { var smallerSide = (, ); var fixViewPortsExperiment = || ; var fixViewPortsExperimentRunning = fixViewPortsExperiment && () === "new"; if (fixViewPortsExperiment) { if (() && !()) { smallerSide = smallerSide / ; } } return smallerSide; }
Get the location where the web page was rolled
function getScrollXY() { return ? { x: , y: } : { x: , y: }; }
Get parameters on the URL
// Get a parameter value in the URL, case-insensitive// Get a parameter value in the URL, which is case-insensitive,// The default is to take the parameters in 'hash'.// If passing other parameters supports the parameter in 'search'// @param {String} name parameter nameexport function getUrlParam(name, type = "hash") { let newName = name, reg = new RegExp("(^|&)" + newName + "=([^&]*)(&|$)", "i"), paramHash = ("?")[1] || "", paramSearch = ("?")[1] || "", param; type === "hash" ? (param = paramHash) : (param = paramSearch); let result = (reg); if (result != null) { return result[2].split("/")[0]; } return null; }
Verify that the URL link is valid
function getUrlState(URL) { var xmlhttp = new ActiveXObject(""); ("GET", URL, false); try { (); } catch (e) { } finally { var result = ; if (result) { if ( == 200) { return true; } else { return false; } } else { return false; } } }
Get the width and height of the visible range of the form
function getViewSize() { var de = ; var db = ; var viewW = == 0 ? : ; var viewH = == 0 ? : ; return Array(viewW, viewH); }
Get mobile device maximization size
function getZoom() { var screenWidth = () === 90 ? (, ) : (, ); if (() && !()) { screenWidth = screenWidth / ; } var FixViewPortsExperiment = || ; var FixViewPortsExperimentRunning = FixViewPortsExperiment && (FixViewPortsExperiment === "New" || FixViewPortsExperiment === "new"); if (FixViewPortsExperimentRunning) { return screenWidth / ; } else { return screenWidth / ; } }
Determine whether to access Android mobile devices
function isAndroidMobileDevice() { return /android/(()); }
Determine whether Apple mobile devices access
function isAppleMobileDevice() { return /iphone|ipod|ipad|Macintosh/(()); }
Determine whether it is a numeric type
function isDigit(value) { var patrn = /^[0-9]*$/; if ((value) == null || value == "") { return false; } else { return true; } }
Is it a certain type of mobile phone model?
// Use devicePixelRatio and resolution to judgeconst isIphonex = () => { // X XS, XS Max, XR const xSeriesConfig = [ { devicePixelRatio: 3, width: 375, height: 812 }, { devicePixelRatio: 3, width: 414, height: 896 }, { devicePixelRatio: 2, width: 414, height: 896 } ]; // h5 if (typeof window !== "undefined" && window) { const isIOS = /iphone/(); if (!isIOS) return false; const { devicePixelRatio, screen } = window; const { width, height } = screen; return ( item => === devicePixelRatio && === width && === height ); } return false; };
Determine whether to move the device
function isMobile() { if (typeof this._isMobile === "boolean") { return this._isMobile; } var screenWidth = (); var fixViewPortsExperiment = || ; var fixViewPortsExperimentRunning = fixViewPortsExperiment && () === "new"; if (!fixViewPortsExperiment) { if (!()) { screenWidth = screenWidth / ; } } var isMobileScreenSize = screenWidth < 600; var isMobileUserAgent = false; this._isMobile = isMobileScreenSize && (); return this._isMobile; }
Do you know whether the mobile phone number
function isMobileNumber(e) { var i = "134,135,136,137,138,139,150,151,152,157,158,159,187,188,147,182,183,184,178", n = "130,131,132,155,156,185,186,145,176", a = "133,153,180,181,189,177,173,170", o = e || "", r = (0, 3), d = (0, 4), s = !!/^1\d{10}$/.test(o) && ((r) >= 0 ? "Universal" : (r) >= 0 ? "telecommunications" : "1349" == d ? "telecommunications" : (r) >= 0 ? "move" : "unknown"); return s; }
Determine whether it is a mobile device access
function isMobileUserAgent() { return /iphone|ipod|android.*mobile|windows.*phone|blackberry.*mobile/( () ); }
Determine whether the mouse is removed from the event
function isMouseOut(e, handler) { if ( !== "mouseout") { return false; } var reltg = ? : === "mouseout" ? : ; while (reltg && reltg !== handler) { reltg = ; } return reltg !== handler; }
Determine whether the Touch screen is
function isTouchScreen() { return ( "ontouchstart" in window || ( && document instanceof DocumentTouch) ); }
Determine whether it is a website address
function isURL(strUrl) { var regular = /^\b(((https?|ftp):\/\/)?[-a-z0-9]+(\.[-a-z0-9]+)*\.(?:com|edu|gov|int|mil|net|org|biz|info|name|museum|asia|coop|aero|[a-z][a-z]|((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]\d)|\d))\b(\/[-a-z0-9_:\@&?=+,.!\/~%\$]*)?)$/i; if ((strUrl)) { return true; } else { return false; } }
Determine whether the window is opened
function isViewportOpen() { return !!("wixMobileViewport"); }
Loading style files
function loadStyle(url) { try { (url); } catch (e) { var cssLink = ("link"); = "stylesheet"; = "text/css"; = url; var head = ("head")[0]; (cssLink); } }
Replace address bar
function locationReplace(url) { if () { (null, , url); (0); } else { (url); } }
Solve offsetX compatibility issues
// OffsetX/Y is not supported for Firefoxfunction getOffset(e) { var target = , // The target object currently triggered eventCoord, pageCoord, offsetCoord; // Calculate the distance from the current trigger element to the document pageCoord = getPageCoord(target); // Calculate the distance from the cursor to the document eventCoord = { X: + , Y: + }; // Subtract to get the cursor to the coordinates of the first positioned parent element offsetCoord = { X: - , Y: - }; return offsetCoord; } function getPageCoord(element) { var coord = { X: 0, Y: 0 }; // Calculate from the current trigger element to the root node. // Sum of offsetLeft or offsetTop values of offsetParent elements at each level while (element) { += ; += ; element = ; } return coord; }
Common method for opening a form
function openWindow(url, windowName, width, height) { var x = parseInt( / 2.0) - width / 2.0; var y = parseInt( / 2.0) - height / 2.0; var isMSIE = == "Microsoft Internet Explorer"; if (isMSIE) { var p = "resizable=1,location=no,scrollbars=no,width="; p = p + width; p = p + ",height="; p = p + height; p = p + ",left="; p = p + x; p = p + ",top="; p = p + y; retval = (url, windowName, p); } else { var win = ( url, "ZyiisPopup", "top=" + y + ",left=" + x + ",scrollbars=" + scrollbars + ",dialog=yes,modal=yes,width=" + width + ",height=" + height + ",resizable=no" ); eval("try { (width, height); } catch(e) { }"); (); } }
Splice key-value pairs into URLs with parameters
export default const fnParams2Url = obj=> { let aUrl = [] let fnAdd = function(key, value) { return key + '=' + value } for (var k in obj) { (fnAdd(k, obj[k])) } return encodeURIComponent(('&')) }
Remove the url prefix
function removeUrlPrefix(a) { a = a .replace(/:/g, ":") .replace(/./g, ".") .replace(///g, "/"); while ( trim(a) .toLowerCase() .indexOf("http://") == 0 ) { a = trim((/http:\/\//i, "")); } return a; }
Replace all
= function(s1, s2) { return (new RegExp(s1, "gm"), s2); };
Resize operation
(function() { var fn = function() { var w = ? : , r = 1255, b = (), classname = ; if (w < r) { //Perform the corresponding operation when the width of the form is less than 1255 } else { //Perform the corresponding operation when the width of the form is greater than 1255 } }; if () { ("resize", function() { fn(); }); } else if () { ("onresize", function() { fn(); }); } fn(); })();
Scroll to top
// Use or to get the distance to the top, from the top// Roll a small distance. Use() to scroll.// @example // scrollToTop(); function scrollToTop() { var c = || ; if (c > 0) { (scrollToTop); (0, c - c / 8); } }
Set cookie value
function setCookie(name, value, Hours) { var d = new Date(); var offset = 8; var utc = () + () * 60000; var nd = utc + 3600000 * offset; var exp = new Date(nd); (() + Hours * 60 * 60 * 1000); = name + "=" + escape(value) + ";path=/;expires=" + () + ";domain=;"; }
Set as home page
function setHomepage() { if () { = "url(#default#homepage)"; (""); } else if () { if () { try { ( "UniversalXPConnect" ); } catch (e) { alert( "This operation was rejected by the browser. If you want to enable this function, please enter about:config in the address bar, and then enter the .codebase_principal_support value to true" ); } } var prefs = [ "@/preferences-service;1" ].getService(); ("", ""); } }
Sort by letters, sort each row in an array
function setSort() { var text = .split(/[\r\n]/) .sort() .join("\r\n"); //order var test = .split(/[\r\n]/) .sort() .reverse() .join("\r\n"); //Inverse order = != text ? text : test; }
Delay execution
// For example, sleep(1000) means waiting for 1000 milliseconds, and can also be implemented from the perspectives of Promise, Generator, Async/Await, etc.// Promise const sleep = time => { return new Promise(resolve => setTimeout(resolve, time)); }; sleep(1000).then(() => { (1); }); // Generator function* sleepGenerator(time) { yield new Promise(function(resolve, reject) { setTimeout(resolve, time); }); } sleepGenerator(1000) .next() .(() => { (1); }); //async function sleep(time) { return new Promise(resolve => setTimeout(resolve, time)); } async function output() { let out = await sleep(1000); (1); return out; } output(); function sleep(callback, time) { if (typeof callback === "function") { setTimeout(callback, time); } } function output() { (1); } sleep(output, 1000);
Determine whether it starts with a string
= function(s) { return (s) == 0; };
Clear script content
function stripscript(s) { return (/<script.*?>.*?<\/script>/gi, ""); }
Time personalized output function
/* 1. < 60s, displayed as "just" 2. >= 1min && < 60 min, display the difference between the current time "XX minutes ago" 3. >= 60min && < 1day, displays the difference between the current time "Today XX:XX" 4. >= 1day && < 1year, display the date "XX month XX:XX" 5. >= 1year, display the specific date "XXXX, XX, XX:XX" */ function timeFormat(time) { var date = new Date(time), curDate = new Date(), year = (), month = () + 10, day = (), hour = (), minute = (), curYear = (), curHour = (), timeStr; if (year < curYear) { timeStr = year + "Year" + month + "moon" + day + "day " + hour + ":" + minute; } else { var pastTime = curDate - date, pastH = pastTime / 3600000; if (pastH > curHour) { timeStr = month + "moon" + day + "day " + hour + ":" + minute; } else if (pastH >= 1) { timeStr = "today " + hour + ":" + minute + "point"; } else { var pastM = () - minute; if (pastM > 1) { timeStr = pastM + "Minutes ago"; } else { timeStr = "just"; } } } return timeStr; }
Convert full-width to half-width function
function toCDB(str) { var result = ""; for (var i = 0; i < ; i++) { code = (i); if (code >= 65281 && code <= 65374) { result += ((i) - 65248); } else if (code == 12288) { result += ((i) - 12288 + 32); } else { result += (i); } } return result; }
Convert half-width to full-width function
function toDBC(str) { var result = ""; for (var i = 0; i < ; i++) { code = (i); if (code >= 33 && code <= 126) { result += ((i) + 65248); } else if (code == 32) { result += ((i) + 12288 - 32); } else { result += (i); } } return result; }
Amount capital conversion function
function transform(tranvalue) { try { var i = 1; var dw2 = new Array("", "Ten thousand", "100 million"); //Large unit var dw1 = new Array("pickup", "Bai", "thousand"); //Small unit var dw = new Array( "zero", "one", "two", "Three", "Si", "Wu", "land", "Qi", "eight", "Nine" ); // Use integer part //The following is the text box that converts lowercase to uppercase and displayed in the total uppercase text box //Separate integers and decimals var source = splits(tranvalue); var num = source[0]; var dig = source[1]; //Convert integer part var k1 = 0; //Size small units var k2 = 0; //The large unit is planned var sum = 0; var str = ""; var len = source[0].length; //The length of the integer for (i = 1; i <= len; i++) { var n = source[0].charAt(len - i); //Get the number on a certain digit var bn = 0; if (len - i - 1 >= 0) { bn = source[0].charAt(len - i - 1); //Get the number on the previous digit of a certain digit } sum = sum + Number(n); if (sum != 0) { str = dw[Number(n)].concat(str); //Get the uppercase number corresponding to the number and insert it in front of the str string if (n == "0") sum = 0; } if (len - i - 1 >= 0) { //In the digital range if (k1 != 3) { //Add small units if (bn != 0) { str = dw1[k1].concat(str); } k1++; } else { //No small units are added, increase units k1 = 0; var temp = (0); if (temp == "Ten thousand" || temp == "100 million") //If there is no number before the large unit, then give up the large unit str = (1, - 1); str = dw2[k2].concat(str); sum = 0; } } if (k1 == 3) { //Small units go to a large unit, one k2++; } } //Convert the fractional part var strdig = ""; if (dig != "") { var n = (0); if (n != 0) { strdig += dw[Number(n)] + "horn"; //Add number } var n = (1); if (n != 0) { strdig += dw[Number(n)] + "point"; //Add number } } str += "Yuan" + strdig; } catch (e) { return "0 yuan"; } return str; } //Split integers and decimalsfunction splits(tranvalue) { var value = new Array("", ""); temp = ("."); for (var i = 0; i < ; i++) { value = temp; } return value; }
Clear spaces
= function() { var reExtraSpace = /^\s*(.*?)\s+$/; return (reExtraSpace, "$1"); }; // Clear the left spacefunction ltrim(s) { return (/^(\s*| *)/, ""); } // Clear the right spacefunction rtrim(s) { return (/(\s*| *)$/, ""); }
Random number timestamp
function uniqueId() { var a = , b = parseInt; return ( Number(new Date()).toString() + b(10 * a()) + b(10 * a()) + b(10 * a()) ); }
Implement utf8 decoding
function utf8_decode(str_data) { var tmp_arr = [], i = 0, ac = 0, c1 = 0, c2 = 0, c3 = 0; str_data += ""; while (i < str_data.length) { c1 = str_data.charCodeAt(i); if (c1 < 128) { tmp_arr[ac++] = (c1); i++; } else if (c1 > 191 && c1 < 224) { c2 = str_data.charCodeAt(i + 1); tmp_arr[ac++] = (((c1 & 31) << 6) | (c2 & 63)); i += 2; } else { c2 = str_data.charCodeAt(i + 1); c3 = str_data.charCodeAt(i + 2); tmp_arr[ac++] = ( ((c1 & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63) ); i += 3; } } return tmp_arr.join(""); }
The following isPuxiaoSeveral functions recommended by the submission are used as common input value checksum replacement operations, mainly for verification rules in mainland China:
Check whether it is a number and whether the number of decimal points is consistent with the parameter floats
Verification rules:
- If the parameter floats has a value, the number of digits after the decimal point of the number is checked.
- If the parameter floats has no value, it is only verified whether it is a number.
function isNum(value,floats=null){ let regexp = new RegExp(`^[1-9][0-9]*.[0-9]{${floats}}$|^0.[0-9]{${floats}}$`); return typeof value === 'number' && floats?(String(value)):true; }
function anysicIntLength(minLength,maxLength){ let result_str = ''; if(minLength){ switch(maxLength){ case undefined: result_str = result_str.concat(`{${minLength-1}}`); break; case null: result_str = result_str.concat(`{${minLength-1},}`); break; default: result_str = result_str.concat(`{${minLength-1},${maxLength-1}}`); } }else{ result_str = result_str.concat('*'); } return result_str; }
Check whether it is a non-zero positive integer
function isInt(value,minLength=null,maxLength=undefined){ if(!isNum(value)) return false; let regexp = new RegExp(`^-?[1-9][0-9]${anysicIntLength(minLength,maxLength)}$`); return (()); }
Check whether it is a non-zero positive integer
function isPInt(value,minLength=null,maxLength=undefined) { if(!isNum(value)) return false; let regexp = new RegExp(`^[1-9][0-9]${anysicIntLength(minLength,maxLength)}$`); return (()); }
Check whether it is a non-zero negative integer
function isNInt(value,minLength=null,maxLength=undefined){ if(!isNum(value)) return false; let regexp = new RegExp(`^-[1-9][0-9]${anysicIntLength(minLength,maxLength)}$`); return (()); }
Check whether the integer is within the value range
Verification rules:
- minInt is the smallest integer in the range of values
- maxInt is the largest integer in the range of values
function checkIntRange(value,minInt,maxInt=9007199254740991){ return Boolean(isInt(value) && (Boolean(minInt!=undefined && minInt!=null)?value>=minInt:true) && (value<=maxInt)); }
Check whether it is a mainland Chinese mobile phone number
function isTel(value) { return /^1[3,4,5,6,7,8,9][0-9]{9}$/.test(()); }
Verify whether it is a mainland Chinese fax or landline number
function isFax(str) { return /^([0-9]{3,4})?[0-9]{7,8}$|^([0-9]{3,4}-)?[0-9]{7,8}$/.test(str); }
Verify whether it is an email address
function isEmail(str) { return /^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/.test(str); }
Check whether it is a QQ number
Verification rules:
- 5-13-bit integers that start with 0
function isQQ(value) { return /^[1-9][0-9]{4,12}$/.test(()); }
Verify whether it is a URL
Verification rules:
- byhttps://, http://, ftp://, rtsp://, mms:// beginning, or without these beginnings
- You can have no beginning of www (or other secondary domain names), only domain names
- Other allowed symbols such as /%*?@& are allowed in the web address.
function isURL(str) { return /^(https:\/\/|http:\/\/|ftp:\/\/|rtsp:\/\/|mms:\/\/)?[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+[\/=\?%\-&_~`@[\]\':+!]*([^<>\"\"])*$/.test(str); }
Verify whether it is an IP address without port number
Verification rules:
- The IP format is, the value range of each number is 0-255
- No other numbers other than 0 cannot start with 0, such as 02
function isIP(str) { return /^((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])$/.test(str); }
Verify whether it is an IPv6 address
Verification rules:
- Supports normal IPv6 format
- Supports IPv6 compression format
function isIPv6(str){ return Boolean((/:/g)?(/:/g).length<=7:false && /::/.test(str)?/^([\da-f]{1,4}(:|::)){1,6}[\da-f]{1,4}$/(str):/^([\da-f]{1,4}:){7}[\da-f]{1,4}$/(str)); }
Verify whether it is the second generation of resident identity card in mainland China
Verification rules:
- A total of 18 bits, the last bit can be X (both upper and lower case)
- Cannot start with 0
- The date of birth will be checked: the year can only start from 18/19/2*, the month can only be 01-12, and the day can only be 01-31.
function isIDCard(str){ return /^[1-9][0-9]{5}(18|19|(2[0-9]))[0-9]{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)[0-9]{3}[0-9Xx]$/.test(str); }
Check whether it is a Chinese postal code
The parameter value is a number or a string
Verification rules:
- A total of 6 digits and cannot start with 0
function isPostCode(value){ return /^[1-9][0-9]{5}$/.test(()); }
Verify that the two parameters are exactly the same, including the type
Verification rules:
- The same value and the same data type
function same(firstValue,secondValue){ return firstValue===secondValue; }
Check whether the length of the character is within the specified range
Verification rules:
- minInt is the smallest length in the range of values
- maxInt is the maximum length in the range of values
function lengthRange(str,minLength,maxLength=9007199254740991) { return Boolean( >= minLength && <= maxLength); }
Check whether characters start with letters
Verification rules:
- Must start with letters
- The letters at the beginning are case-insensitive
function letterBegin(str){ return /^[A-z]/.test(str); }
Check whether the character is a pure number (integral)
Verification rules:
- All characters are positive integers (including 0)
- Can start with 0
function pureNum(str) { return /^[0-9]*$/.test(str); }
function anysicPunctuation(str){ if(!str) return null; let arr = ('').map(item => { return item = '\\' + item; }); return ('|'); }
function getPunctuation(str){ return anysicPunctuation(str) || '\\~|\\`|\\!|\\@|\\#|\\$|\\%|\\^|\\&|\\*|\\(|\\)|\\-|\\_|\\+|\\=|\\||\\\|\\[|\\]|\\{|\\}|\\;|\\:|\\"|\\\'|\\,|\\<|\\.|\\>|\\/|\\?'; }
function getExcludePunctuation(str){ let regexp = new RegExp(`[${anysicPunctuation(str)}]`,'g'); return getPunctuation(' ~`!@#$%^&*()-_+=\[]{};:"\',<.>/?'.replace(regexp,'')); }
Returns the number of characters (letters, numbers, punctuation marks) of string composition
The origin of LIP abbreviation: L(letter letter) + I(uint number) + P(punctuation punctuation)
Description of parameter punctuation:
- punctuation refers to an acceptable set of punctuation marks
- If you need to customize the symbol set, such as "Contains only midscores and underscores", set the parameter to "-_"
- If the value is not passed or the default is null, the internal default punctuation set is other English punctuation marks except spaces: ~`!@#$%^&*()-_+=[]{};:"',<.>/?
function getLIPTypes(str,punctuation=null){ let p_regexp = new RegExp('['+getPunctuation(punctuation)+']'); return /[A-z]/.test(str) + /[0-9]/.test(str) + p_regexp.test(str); }
Check whether the number of types formed by the string is greater than or equal to the value of the parameter num. It is usually used to verify the complexity of the password set by the user.
Verification rules:
- The parameter num is the type to be composed (letters, numbers, punctuation marks), and the value can only be 1-3.
- The default parameter num value is 1, which means: it contains at least 1 of letters, numbers, and punctuation marks.
- If the value of the parameter num is 2, it means that it contains at least two types of letters, numbers, and punctuation marks.
- If the value of the parameter num is 3, it means that the letters, numbers, and punctuation must be included at the same time.
- The parameter punctuation refers to an acceptable set of punctuation marks. For specific settings, please refer to the explanation of punctuation marks in the getLIPTypes() method.
function pureLIP(str,num=1,punctuation=null){ let regexp = new RegExp(`[^A-z0-9|${getPunctuation(punctuation)}]`); return Boolean(!(str) && getLIPTypes(str,punctuation)>= num); }
Clear all spaces
function clearSpaces(str){ return (/[ ]/g,''); }
Clear all Chinese characters (including Chinese punctuation marks)
function clearCNChars(str){ return (/[\u4e00-\u9fa5]/g,''); }
Clear all Chinese characters and spaces
function clearCNCharsAndSpaces(str){ return (/[\u4e00-\u9fa5 ]/g,''); }
Clear all other punctuation marks (including spaces) in English except for retaining the punctuation mark set.
All English punctuation marks are: ~`!@#$%^&*()-_+=[]{};:"',<.>/?
The parameter excludePunctuation refers to the set of punctuation marks that need to be retained. For example, if the passed value is '_', it means that all other English punctuation marks except _ are cleared.
function clearPunctuation(str,excludePunctuation=null){ let regexp = new RegExp(`[${getExcludePunctuation(excludePunctuation)}]`,'g'); return (regexp,''); }
Check whether spaces are included
function haveSpace(str) { return /[ ]/.test(str); }
Verify whether Chinese characters are included (including Chinese punctuation marks)
function haveCNChars(str){ return /[\u4e00-\u9fa5]/.test(str); }
Interested friends can use itOnline HTML/CSS/JavaScript code running tool:http://tools./code/HtmlJsRunTest the above code running effect.
For more information about JavaScript, please view the special topic of this site: "Summary of common JavaScript functions techniques》、《JavaScript object-oriented tutorial》、《Summary of JavaScript Errors and Debugging Skills》、《Summary of JavaScript data structure and algorithm techniques"and"Summary of JavaScript mathematical operations usage》
I hope this article will be helpful to everyone's JavaScript programming.