Home Web Front-end JS Tutorial extjs study notes (2) Ext.Element class_extjs

extjs study notes (2) Ext.Element class_extjs

May 16, 2016 pm 06:44 PM
extjs study notes

The difference is that fly returns a lightweight Element and occupies less memory, but does not save the reference to the object. Each use will change the previous object, while get will cache the Element object returned each time, but it occupies more memory. of memory. We use an example to illustrate the difference between the two, and at the same time look at the powerful functions that Element provides us. Add an html page to our project with the following content:

Copy the code The code is as follows:


< ;html xmlns="http://www.w3.org/1999/xhtml" >

Element Demo








< ;div id="div1">





Of course, we also need to add the element.js file. We first use the Ext.get method to obtain the element object and perform some operations. The code is as follows:
Copy the code The code is as follows:

///
/**//*
*Author: Daben
*Date: 2009-10-12
*Version: 1.0
*/

Ext.onReady(function() {
Ext.get("btn").on("click", function() {
var el1 = Ext.get( "div1");
var el2 = Ext.get("div2");
el1.addClass("red"); //Add CSS class
el2.addClass("green");
el1.setWidth(); //Set width
el1.highlight(); //Highlight
el1.center(); //Center
el1.setOpacity(0.5); // Set transparency
el2.fadeIn({ endOpacity: 1, //can be any value between 0 and 1
easing: 'easeOut',
duration: 1
});
//el1.addClass("red").setWidth(100).setOpacity(0.5).center();
});
});

After running, we click The effect can be seen with the button button. The code is very intuitive and does not require too much explanation. Now we change the get method of Element to fly. After running it, we will find that all operations are performed on div2, because the Element reference of div1 has not been saved. The second time we use the fly method, the first time is rewritten. The obtained Element object, so we see that the operations are performed on div2. Many people who have used jquery like to write code in a method chain. Since most methods of the Element object still return Element objects, a method chain can also be used here, just like what I wrote in line 23. . But please note that the methods highlight, fadeIn, and fadeOut are not actually methods of the Element object. They are actually methods in the Ext.Fx class. They are just added to the Element object using the apply method of js (the use of the apply method can (Refer here), the methods in Fx Tears use the internal effect queue, the effects are in a specific order, while the methods of the Element object are executed immediately. Therefore, you need to be careful when using the Element and Fx methods at the same time in the method chain, as undesirable results may occur.
The setWith method is used in our code. There are also some methods starting with set in the Element class, which are used to make some settings. Most of these methods have an optional parameter to present the animation effect. This parameter can It is a Boolean value that can be used to enable the default settings, or it can be a json object used to customize the animation in detail. Let’s change the above code to see the effect of animation:
Copy code The code is as follows:

///
/**//*
*Author: Daben
*Date: 2009-10-12
*Version: 1.0
*/
Ext.onReady(function() {
Ext.get("btn").on("click", function() {
Ext .fly("div1").addClass("red").setWidth(100, {
duration: 3,
easing: 'elasticIn',
callback: function() {Ext.Msg.alert ("Information", "The width of div1 is set to 100") },
scope: this
});
});
});

Briefly explain the above code: duration specifies the animation time, here it is 3 seconds; easing is used to set the animation method, which must be a valid Ext.lib.Easing value. You can get all the information from the help document. Valid values; callback, the function called when the animation is completed, scope specifies the scope of the callback function.
In addition to using the get and fly methods, Element also has a select method, which is a very powerful method. You can get an array of Elements based on the selector (actually, it returns a CompositeElementLite or CompositeElement object. These two classes It is an inheritance relationship in js, which maintains an array of Element objects internally. When we use the Element method on the returned object, we actually call the method on each Element object in the array). This method can be abbreviated as Ext.select. It has a selector as a parameter. The usage method is similar to jquery. For example, Ext.select("p") will select all p tags, and Ext.select(".red") will select For all tags whose CSS class is red, selectors can be used in combination, such as "div.foo:nth-child(odd)[@foo=bar].bar:first". Being good at using selectors can bring great convenience to us in controlling elements. You can refer to the documentation of the Ext.DomQuery class to get more knowledge about selectors.
Element’s query method uses a method similar to select to return a collection of Dom nodes. However, it should be noted that Ext.query is not the abbreviation of Ext.Element.query, but the abbreviation of the Ext.DomQuery.select method. The Dom contact can obtain the Element object through the get method, and the Element object can obtain the Dom node through the dom attribute. According to different needs, we can easily convert it.
Finally, let’s talk about the addListener method of Element. This method can be abbreviated as on, which is used to register events for the Element object. We have already seen the usage of on("click", function(){}). You can also register multiple events at one time through this method, for example:
Copy code The code is as follows:

el.on({
'click' : {
fn: this.onClick,
scope: this,
delay: 100
},
'mouseover' : {
fn: this.onMouseOver,
scope: this
},
'mouseout' : {
fn: this.onMouseOut,
scope: this
}
} );

delay indicates how long after the event is triggered to execute the event processing function, the unit is milliseconds. There is also a concise way of writing:
Copy code The code is as follows:

el.on({
'click' : this.onClick,
'mouseover' : this.onMouseOver,
'mouseout' : this.onMouseOut,
scope: this
});
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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 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 Plugins 8 Stunning jQuery Page Layout Plugins Mar 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 Applications Build Your Own AJAX Web Applications Mar 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 Mobile Cheat Sheets for Mobile Development 10 Mobile Cheat Sheets for Mobile Development Mar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source Viewer Improve Your jQuery Knowledge with the Source Viewer Mar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins 10 jQuery Fun and Games Plugins Mar 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 Background jQuery Parallax Tutorial - Animated Header Background Mar 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

See all articles