Home Web Front-end JS Tutorial How can a website meet simple needs without jQuery at all_jquery

How can a website meet simple needs without jQuery at all_jquery

May 16, 2016 pm 05:31 PM
jquery

jQuery is the most popular JavaScript tool library today.

According to statistics, it is currently used by 57.3% of websites around the world. In other words, 6 out of 10 websites use jQuery. If you only look at sites that use tool libraries, this percentage rises to a staggering 91.7%.

如何做到 jQuery-free?

Although jQuery is so popular, its bloated size is also a headache. The original size of jQuery 2.0 is 235KB, and the optimized size is 81KB; if it is jQuery 1.8.3 that supports IE6, 7, and 8, the original size is 261KB, and the optimized size is 91KB.

With this size, it will take 1 second or more to fully load even on a broadband environment, let alone a mobile device. This means that if you use jQuery, there will be a delay of at least 1 second before the user sees the page effect. Considering that jQuery is essentially a tool for manipulating DOM, we not only have to ask: Is it necessary to use such a large library if it is just for a few web page effects?

如何做到 jQuery-free?

In 2006, when jQuery was born, it was mainly used to eliminate the differences between different browsers (mainly IE6) and provide developers with a simple unified interface. Compared to then, the situation today has changed a lot. IE's market share continues to decline, and the JavaScript standard syntax based on ECMAScript is receiving more and more widespread support. Developers can directly use JavScript standard syntax and run it in all major browsers at the same time. They no longer need to obtain compatibility through jQuery.

Let’s explore how to use JavaScript standard syntax to replace some of jQuery’s main functions to make it jQuery-free.

如何做到 jQuery-free?

1. Select DOM elements

The core of jQuery is to select DOM elements through various selectors. You can use the querySelectorAll method to simulate this function.

Copy code The code is as follows:
var $ = document.querySelectorAll.bind (document);

It should be noted here that the querySelectorAll method returns a NodeList object, which is very similar to an array (with a numeric index and length property), but it is not an array, and array-specific methods such as pop and push cannot be used. If necessary, consider converting the Nodelist object to an array.

Copy code The code is as follows:
myList = Array.prototype.slice.call (myNodeList);

2. DOM operations

DOM itself has a rich set of operation methods, which can replace the operation methods provided by jQuery.

Append DOM elements at the end.

Copy code The code is as follows:

// jQuery writing
$(parent) . append ($(child));
// DOM writing
parent.appendChild (child)

Insert DOM element into the head.

Copy code The code is as follows:

// jQuery writing
$(parent) . prepend ($(child));
// DOM writing
parent.insertBefore (child, parent.childNodes[0])

Delete DOM elements.

Copy code The code is as follows:

// jQuery writing
$(child) . remove ()
// DOM writing
child.parentNode.removeChild (child)

3. Event monitoring

jQuery’s on method can be simulated using addEventListener.

Copy code The code is as follows:
Element.prototype.on = Element.prototype.addEventListener;

For ease of use, this method can also be deployed on the NodeList object.

Copy code The code is as follows:
NodeList.prototype.on = function (event, fn) {
[]['forEach'].call (this, function (el) {
el.on (event, fn);
});
return this;
};

4. Event triggering

jQuery’s trigger method needs to be deployed separately, which is relatively complicated.

Copy code The code is as follows:

Element.prototype.trigger = function (type, data) {
var event = document.createEvent ('HTMLEvents');
event.initEvent (type, true, true);
event.data = data {};
event.eventName = type;
event.target = this;
this.dispatchEvent (event);
return this;
};

Also deploy this method on the NodeList object.

Copy code The code is as follows:

NodeList.prototype.trigger = function (event) {
[]['forEach'].call (this, function (el) {
el['trigger'](event);
});
return this;
};

5. document.ready

The current best practice is to load JavaScript script files at the bottom of the page. In this case, the document.ready method (jQuery abbreviated as $(function)) is no longer necessary, because the DOM object has already been generated by the time it is run.

6. attr method

jQuery uses the attr method to read and write attributes of web page elements.

Copy code The code is as follows:
$("#picture") .attr ("src", " http://url/to/image");

DOM elements allow direct reading of attribute values, and the writing method is much simpler.

Copy code The code is as follows:
$("#picture") .src = "http:// url/to/image";

It should be noted that this.value of the input element returns the value in the input box, and this.href of the link element returns the absolute URL. If you need to use the exact values ​​of the attributes of these two web page elements, you can use this.getAttribute (‘value’) and this.getAttibute (‘href’).

7. addClass method

jQuery’s addClass method is used to add a class to a DOM element.

Copy code The code is as follows:

$('body') .addClass ('hasJS' );

The DOM element itself has a readable and writable className attribute that can be used to manipulate classes.

Copy code The code is as follows:

document.body.className = 'hasJS';
// or
document.body.className = ' hasJS';

HTML 5 also provides a classList object with more powerful functions (not supported by IE 9).

Copy code The code is as follows:

document.body.classList.add ('hasJS') ;
document.body.classList.remove ('hasJS');
document.body.classList.toggle ('hasJS');
document.body.classList.contains ('hasJS');

8. CSS

jQuery’s css method is used to set the style of web page elements.

Copy code The code is as follows:
$(node) .css ("color", "red") ;

DOM elements have a style attribute that can be manipulated directly.

Copy code The code is as follows:

element.style.color = "red";;
// or
element.style.cssText = 'color:red';

9. Data Storage

jQuery objects can store data.

Copy code The code is as follows:
$("body") .data ("foo", 52);

HTML 5 has a dataset object with similar functions (not supported by IE 10), but it can only save strings.

Copy code The code is as follows:

element.dataset.user = JSON.stringify (user) ;
element.dataset.score = score;

10. Ajax

jQuery’s Ajax method for asynchronous operations.

Copy code The code is as follows:

$.ajax ({
type: "POST ",
url: "some.php",
data: { name: "John", location: "Boston" }
}) .done (function ( msg ) {
alert ( " Data Saved: " msg );
});

We can define a request function to simulate the Ajax method.

Copy code The code is as follows:

function request (type, url, opts, callback) {
var xhr = new XMLHttpRequest ();
if (typeof opts === 'function') {
callback = opts;
opts = null;
}
xhr.open (type, url);
var fd = new FormData ();
if (type === 'POST' && opts) {
for (var key in opts) {
fd.append (key, JSON.stringify (opts[key]));
}
}
xhr.onload = function () {
callback (JSON.parse (xhr.response));
};
xhr.send (opts ? fd : null);
}

Then, based on the request function, simulate jQuery’s get and post methods.

Copy code The code is as follows:

var get = request.bind (this, 'GET' );
var post = request.bind (this, 'POST');



11. Animation

jQuery’s animate method is used to generate animation effects.

Copy code The code is as follows:
$foo.animate ('slow', { x: ' =10px ' });

jQuery’s animation effects are largely based on DOM. But currently, CSS 3 animation is far more powerful than DOM, so you can write animation effects into CSS, and then display the animation by manipulating the class of DOM elements.

Copy code The code is as follows:
foo.classList.add ('animate');

If you need to use callback functions for animations, CSS 3 also defines corresponding events.

Copy code The code is as follows:

el.addEventListener ("webkitTransitionEnd", transitionEnded);
el.addEventListener ("transitionend", transitionEnded);

12. Alternatives

Due to the size of jQuery, there are endless alternatives.

Among them, the most famous is zepto.js. Its design goal is to be as compatible with jQuery's API as possible with the smallest size. The original size of zepto.js version 1.0 is 55KB, optimized to 29KB, and gzipped to 10KB.

If you don’t seek maximum compatibility and just want to simulate the basic functions of jQuery, then min.js is only 200 bytes after optimization, while dolla is 1.7KB after optimization.

In addition, jQuery itself adopts a module design, so you can only choose to use the modules you need. See its GitHub website for details, or use the dedicated Web interface.

13. Reference links

- Remy Sharp, I know jQuery. Now what?
- Hemanth.HM, Power of Vanilla JS
- Burke Holland, 5 Things You Should Stop Doing With jQuery

(End)

Statement of this Website
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

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 Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of jQuery reference methods: Quick start guide Detailed explanation of jQuery reference methods: Quick start guide Feb 27, 2024 pm 06:45 PM

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to use PUT request method in jQuery? How to use PUT request method in jQuery? Feb 28, 2024 pm 03:12 PM

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

In-depth analysis: jQuery's advantages and disadvantages In-depth analysis: jQuery's advantages and disadvantages Feb 27, 2024 pm 05:18 PM

jQuery is a fast, small, feature-rich JavaScript library widely used in front-end development. Since its release in 2006, jQuery has become one of the tools of choice for many developers, but in practical applications, it also has some advantages and disadvantages. This article will deeply analyze the advantages and disadvantages of jQuery and illustrate it with specific code examples. Advantages: 1. Concise syntax jQuery's syntax design is concise and clear, which can greatly improve the readability and writing efficiency of the code. for example,

How to remove the height attribute of an element with jQuery? How to remove the height attribute of an element with jQuery? Feb 28, 2024 am 08:39 AM

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

jQuery Tips: Quickly modify the text of all a tags on the page jQuery Tips: Quickly modify the text of all a tags on the page Feb 28, 2024 pm 09:06 PM

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: &lt

Use jQuery to modify the text content of all a tags Use jQuery to modify the text content of all a tags Feb 28, 2024 pm 05:42 PM

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on ​​the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? How to tell if a jQuery element has a specific attribute? Feb 29, 2024 am 09:03 AM

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

Understand the role and application scenarios of eq in jQuery Understand the role and application scenarios of eq in jQuery Feb 28, 2024 pm 01:15 PM

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s

See all articles