search
HomeWeb Front-endJS TutorialSummary of commonly used JavaScript scripts (1)_javascript skills

This article mainly introduces the first article in the series of summary of common JavaScript scripts. What I will share with you is that jquery restricts the text box to only input numbers, encapsulates the DOMContentLoaded event, uses native JS to simply encapsulate AJAX, and cross-domain requests. JSONP, thousandth formatting, friends in need can refer to it.

jquery restricts the text box to only input numbers

jquery restricts the text box to only input numbers, compatible with IE, chrome, and FF (performance effects are different), sample code As follows:

$("input").keyup(function(){ //keyup event processing
$(this).val($(this).val().replace(/D| ^0/g,''));
}).bind("paste",function(){ //CTR V event processing
$(this).val($(this).val() .replace(/D|^0/g,''));
}).css("ime-mode", "disabled"); //CSS setting input method is not available

The function of the above code is: only positive integers greater than 0 can be entered.

$("#rnumber").keyup(function(){
$(this).val($(this).val().replace(/[^0-9.]/ g,''));
}).bind("paste",function(){ //CTR V event processing
$(this).val($(this).val().replace( /[^0-9.]/g,'')); 
 }).css("ime-mode", "disabled"); //CSS setting input method is not available

The function of the above code is: only numbers from 0-9 and decimal points can be entered.

Encapsulate DOMContentLoaded event

//Save the event queue of domReady
eventQueue = [];
//Judge whether the DOM is loaded
isReady = false;
//Judge whether the DOMReady is bound
isBind = false;
/*Execute domReady()
*
*@param {function}
*@execute Push the event handler into the event queue and bind DOMContentLoaded
* * If the DOM is loaded has been completed, execute immediately >                                                                                                     *@param null
*@execute Modern browsers bind DOMContentLoaded through addEvListener, including ie9
ie6-8 determines whether the DOM is loaded by judging doScroll
*@caller domReady()
*/
function bindReady (){
if (isReady) return;
if (isBind) return;
isBind = true;
if (window.addEventListener) {
document.addEventListener('DOMContentLoaded' ,execFn , false);
}
else if (window.attachEvent) {
doScroll();
};
};
/*doScroll determines whether the DOM of ie6-8 is loaded Completed
*
*@param null
*@execute doScroll to determine whether the DOM is loaded
*@caller bindReady()
*/
function doScroll(){
try try {
                                                                                                                                                                                                                                                                                                   .​ execFn();
};
/*Execute event queue
*
*@param null
*@execute Loop the event handler in the execution queue
*@caller bindReady()
*/
function execFn(){
if (!isReady) {
isReady = true;
for (var i = 0; i eventQueue [i].call(window);
        };
                eventQueue = [];                                                    🎜> });
//js file 2
domReady(function(){
});
//Note, if it is asynchronously loaded js, do not bind the domReady method, otherwise the function It will not be executed,
//Because DOMContentLoaded has been triggered before the asynchronously loaded js is downloaded, addEventListener can no longer be monitored when it is executed



Use native JS to simply encapsulate AJAX


First, we need the xhr object. This is not difficult for us, encapsulate it into a function

var createAjax = function() {
var xhr = null;
try {
} Catch (e1) {
Try {
// Non -IE browser
xhr = new xmlhttprequest ();
} catch (e2) {
Window.alert ("Your browse The server does not support ajax, please change! ");
}
}
return xhr;
};


Then, let’s write the core function.

var ajax = function(conf) {
// Initialization
//type parameter, optional
var type = conf.type;
//url parameter, required
var url = conf.url;
//data parameter is optional, only required in post request
var data = conf.data;
//datatype parameter is optional
var dataType = conf. dataType;
//The callback function is optional
var success = conf.success;
if (type == null){
//The type parameter is optional, the default is get
type = "get";
}
if (dataType == null){
Create ajax engine object
var xhr = createAjax();
// Open
xhr.open(type, url, true);
// Send
if (type == "GET " || type == "get") {
                                                 ("content-type",
"application/x-www-form-urlencoded");
xhr.send(data);
}
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
if(dataType == "text"||dataType=="TEXT") {
if (success != null){
                                                                                                                                                        ==="XML") {
                                                                                                        != null){
                                                                                               (dataType=="json"||dataType=="JSON") {
               if (success != null){
                                                                                                                                                                                                                                                                              }
}
}
};
};
url:"test.jsp",
data:"name=dipoo&info=good",
dataType:"json",
success:function(data){
alert(data. name);
}
});



JSONP for cross-domain requests


/**
* Added handling of request failure. Although this function is not very useful, it studies the differences of scripts in various browsers
* 1, IE6/7/8 supports the onreadystatechange event of script
* 2. IE9/10 supports the onload and onreadystatechange events of script
* 3. Firefox/Safari/Chrome/Opera supports the onload event of script
* 4. IE6/7/8/Opera does not support the onerror event of script; IE9/10/Firefox/Safari/Chrome supports
* 5. Although Opera does not support the onreadystatechange event, it has the readyState attribute. This is amazing
* 6. Use IE9 and IETester to test IE6/7/8 , its readyState is always loading, loaded. Complete never appeared.
*
* The final implementation idea:
* 1. IE9/Firefox/Safari/Chrome uses the onload event for successful callbacks, and uses the onerror event for error callbacks
* 2. Opera also uses the onload event for successful callbacks (It does not support onreadystatechange at all). Since it does not support onerror, delayed processing is used here.
* That is, waiting for and success callback success, the flag bit done is set to true after success. Failure will not be executed, otherwise it will be executed.
* The value of the delay time here is very tricky. It was previously set to 2 seconds, and it was no problem when tested in the company. However, after using the 3G wireless network at home, I found that even though the referenced js file existed, due to
* the network speed was too slow, failure was executed first and success was executed later. So it is more reasonable to take 5 seconds here. Of course it's not absolute.
* 3, IE6/7/8 The success callback uses the onreadystatechange event, and the error callback is almost difficult to implement. It is also the most technical.
* Refer to http://www.php.cn/
* Use nextSibling and find that it cannot be implemented.
* What is disgusting is that even the requested resource file does not exist. Its readyState will also go through the "loaded" state. This way you can't tell whether the request succeeded or failed.
* I was afraid of it, so I finally used the front-end and back-end coordination mechanism to solve the last problem. Let it call callback(true) whether the request succeeds or fails.
* At this time, the logic to distinguish success and failure has been placed in the callback. If jsonp is not returned in the background, failure is called, otherwise success is called.
*
*
* Interface
* Sjax.load(url, {
* data ) // Request parameters (key-value pair string or js object)
* success // Request success callback function
* failure // Request failure callback function
* scope // Callback function execution context
* timestamp // Whether to add timestamp
* });
*
*/
Sjax =
function(win){
    var ie678 = !-[1,],
        opera = win.opera,
        doc = win.document,
        head = doc.getElementsByTagName('head')[0],
        timeout = 3000,
        done = false;
    function _serialize(obj){
        var a = [], key, val;
        for(key in obj){
            val = obj[key];
            if(val.constructor == Array){
                for(var i=0,len=val.length;i                    a.push(key '=' encodeURIComponent(val[i]));
                }
            }else{
                a.push(key '=' encodeURIComponent(val));
            }
        }
        return a.join('&');
    }
    function request(url,opt){
        function fn(){}
        var opt = opt || {},
        data = opt.data,
        success = opt.success || fn,
        failure = opt.failure || fn,
        scope = opt.scope || win,
timestamp = opt.timestamp;
If(data && typeof data == 'object'){
data = _serialize(data);
} }
var script = doc.createElement('script') ;
function callback(isSucc){
if(isSucc){
🎜>              done = true;
                                                  //alert('warning: jsonp did not return.' );
}
}else{
failure.call(scope);
}
                              🎜>                script.onload = script.onerror = script.onreadystatechange = null;
jsonp = undefined;
if( head && script.parentNode){
head.removeChild(script); 🎜> function fixOnerror(){
setTimeout(function(){
if(!done){
callback();
}
}, timeout );
}
if(ie678){
script.onReadyStateChange = Function () {
var ReadyState = this.readyState;
IF (! Done && (ReadyState == 'Loadeded' || ReadyState == { callback (true );
}
}
//fixOnerror();
}else{
Script.onload = function(){
           callback(true);
                                                     > script.onerror = function(){
callback();
}
if(opera){
fixOnerror();
}
}
        if(data){
            url = '?' data;
        }
        if(timestamp){
            if(data){
                url = '&ts=';
            }else{
                url = '?ts='
            }
            url = (new Date).getTime();
        }
        script.src = url;
        head.insertBefore(script, head.firstChild);
    }
    return {load:request};
}(this);

调用方式如下:

 Sjax.load('jsonp66.js', {
        success : function(){alert(jsonp.name)},
        failure : function(){alert('error');}
  }); 

千分位格式化

function toThousands(num) {
    var num = (num || 0).toString(), result = '';
    while (num.length > 3) {
        result = ',' num.slice(-3) result;
        num = num.slice(0, num.length - 3);
    }
    if (num) { result = num result; }
    return result;

以上就是本文给大家分享的javascript常用脚本了,希望大家能够喜欢。

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执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

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

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

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

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.