Home > Web Front-end > JS Tutorial > body text

Introduction to the use of extend function in jQuery

小云云
Release: 2018-01-25 10:46:38
Original
1329 people have browsed it

This article mainly introduces the simple usage of the extend function in jQuery, and briefly analyzes the related operation skills of jQuery using the extend function to extend object properties in the form of examples. Friends who need it can refer to it. I hope it can help everyone.


var result=$.extend({},item,item1);
Copy after login

extendAdd new attributes to the object: js plug-ins are often used to configure parameters
{}: item The result after merging with item1
item:Default attribute
item1:New attribute, if item1 and item attribute overlap, the attribute in item1 will be overwritten


<span id="Test"></span>
Copy after login


var item={"name":"olive","age":23};
var item1={"name":"Momo",sex:"gril"};
var result=$.extend({},item,item1);
console.log(JSON.stringify(result));
$("#Test").text(JSON.stringify(result))
Copy after login

Result:

Analysis :

The results show that the name attribute of item1 covers the name attribute of item, and the non-overlapping attributes of item and item1 objects will not affect each other, and will be inherited by the result object. Many js frameworks are By setting the default configuration and then using the extend function, users can customize relevant configurations to achieve personalized use of the framework.

Related recommendations:

JQuery’s $.extend shallow copy and deep copy instance analysis

The difference between deferred objects and extend in jQuery Detailed explanation

Example Detailed explanation of simple usage of extend function in jQuery


The above is the detailed content of Introduction to the use of extend function in jQuery. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!