Use Mootools1.2 to manipulate the HTMLDOM element _ Mootools

Source: Internet
Author: User
Tags mootools
Today, let's take a deeper look at how to manipulate HTML elements. With MooTools1.2, you can add new elements to an HTML page, delete elements, and change any style or element parameters. We have learned how to select DOM elements, how to create arrays, how to create functions, and how to add events to elements. Today, let's take a deeper look at how to manipulate HTML elements. With MooTools 1.2, you can add new elements to an HTML page, delete elements, and change any style or element parameters.
Basic Method
. Get ();
This tool allows you to obtain the attributes of an element ). The attributes of an element are different parts of an HTML element, such as src, value, and name. The use of. get (); method is very simple:
Reference code:

The Code is as follows:


// The following line returns the html Tag Name (p, a, span…) of the element whose id is "id_name ......)
$ ('Id _ name'). get ('tag ');



Reference code:

The Code is as follows:



Element



You can use the. get (); method to obtain more attributes, not just html tag names:
Id
Name
Value
Href
Src
Class (if there are multiple CSS class names, all CSS class names will be returned)
Text (text content of an element)
Wait...
. Set ();
The. set (); method is the same as the. get (); method. Instead of getting a value, you can set a value. This method is useful when used together with events. You can use this method to change some attribute values after page loading.
Reference code:
// This sets the link address of the element whose id is id_name to http://www.google.com"
$ ('Id _ name'). set ('href ', 'HTTP: // www.google.com ');

Reference code:

The Code is as follows:




Search Engine



. Erase ();
By using the. erase (); method, you can clear the attribute values of an element. It is similar to the previous two methods. Select an element, and then select the attribute you want to clear.
Reference code:
// Remove the href attribute of the element whose id is id_name.
$ ('Id _ name'). erase ('href ');

Reference code:

The Code is as follows:




Search Engine




Move Element
. Inject ();
To move an existing element on the page, you can use the. inject (); method. Similar to other methods we see, it is also very simple to use and can give you more control permissions on your user interface. To use the. inject (); method, you must first set some element variables:
Reference code:

The Code is as follows:


Var elementA = $ ('elema ');
Var elementB = $ ('elemb ');
Var elementC = $ ('elemc ');


The code above assigns the following HTML to different variables respectively, which makes it easier to operate with MooTools.
Reference code:

The Code is as follows:



A


B


C




To change the order of these elements, we can use the. inject (); Method in four ways. We can inject elements:
Bottom (bottom, default)
Top)
Before)
After an element)
Bottom and top inject this element into the inner of a selected element, at the bottom or top of the element. In contrast, before and after inject an element to the top or bottom of another element, but not to the interior of the element.
Therefore, let's change the order of elements to A-C-B. Because we do not need to inject an element into another element, we can use before or after.
Reference code:

The Code is as follows:


// Put element C before Element B.
ElementC. inject (elementB, 'before ');
// Put Element B after element C
ElementB. inject (elementC, 'after ');


Create a new element
New Element
You can use the new Element constructor to create an HTML Element of a row. This is very similar to writing a normal HTML element, but you need to adjust the syntax to run properly in MooTools:
Reference code:
// First name a variable and declare a "new Element"
// Then define the element type (p, a, span ...)
Var newElementVar = new Element ('P ',{
// Set all attributes of the element here
'Id': 'id _ name ',
'Text': 'I am a new P ',
'Styles ':{
// Set all style parameters of the element here
'Width': '200px ',
'Height': '200px ',
'Background-color': '# eee ',
'Float': 'left'
}
});
Now you have an element. You can use the inject () method we just learned to place this element somewhere on the page. Let's start with the simple HTML below:
Reference code:


Some p content



Now, we convert the element whose ID is content_id into a variable:
Reference code:
Var bodyWrapVar = $ ('body _ wrap ');
Like what we just learned, we can inject the element we created into the current HTML:
Reference code:
// This sentence means: "inject newElementVar into bodyWrapVar and place it to the top"
NewElementVar. inject (bodyWrapVar, 'top ');
This code may eventually be like this:
Reference code:



I am a new p


Some p content




Example
For this example, we create a form that allows you to add a row element to your HTML page. First, create some text boxes and buttons.
Reference code:

The Code is as follows:



ID:
Text:
Create a new p



Now, we use MooTools to write JavaScript so that this HTML form can insert a new element into your page. First, add an event to this button and write a function to include our code:
Reference code:

The Code is as follows:


Var newDiv = function (){
// We will put the code "Add a new element" here
};
Window. addEvent ('domainready', function (){
$ ('New _ p'). addEvent ('click', newDiv );
});


The next thing we need to do is to specify the variables we want to process. To use the data in the input form, we need to use. get (); method:
Reference code:

The Code is as follows:


Var idValue = $ ('Id _ input'). get ('value ');
Var textValue = $ ('text _ input'). get ('value ');


Now, the variables idValue and textValue in the code above contain the values of the input form they specify. Because we need to obtain the value of the input box when you click "Create a New p", we need to put the above Code in the newDiv (); function. If we need to obtain this value outside this function, we need to get it during page loading, instead of clicking.
Reference code:

The Code is as follows:


Var newDiv = function (){
Var idValue = $ ('Id _ input'). get ('value ');
Var textValue = $ ('text _ input'). get ('value ');
};
Window. addEvent ('domainready', function (){
$ ('New _ p'). addEvent ('click', newDiv );
});


Next, we need to obtain the elements to be inserted into our new elements:
Reference code:

The Code is as follows:


Var newDiv = function (){
Var idValue = $ ('Id _ input'). get ('value ');
Var textValue = $ ('text _ input'). get ('value ');
Var bodyWrapVar = $ ('newelementiner iner ');
};
Window. addEvent ('domainready', function (){
$ ('New _ p'). addEvent ('click', newDiv );
});


Now that we have the value of our input form, we can create a new element:
Reference code:

The Code is as follows:


Var newDiv = function (){
Var idValue = $ ('Id _ input'). get ('value ');
Var textValue = $ ('text _ input'). get ('value ');
Var bodyWrapVar = $ ('newelementiner iner ');
Var newElementVar = new Element ('P ',{
// This sets the id of this element to the value of idValue.
'Id': idValue,
// This sets the text of this element to the value of textValue.
'Html': textValue
});
};
Window. addEvent ('domainready', function (){
$ ('New _ p'). addEvent ('click', newDiv );
});


The rest of our work is to insert this new element into our page:
Reference code:

The Code is as follows:


Var newDiv = function (){
Var bodyWrapVar = $ ('newelementiner iner ');
Var idValue = $ ('Id _ input'). get ('value ');
Var textValue = $ ('text _ input'). get ('value ');
Var newElementVar = new Element ('P ',{
'Id': idValue,
'Text': textValue
});
// The following sentence is: "insert newElementVar to the internal top of bodyWrapVar"
NewElementVar. inject (bodyWrapVar, 'top ');
};
Var removeDiv = function (){
// This will delete the internal html value (that is, all the items in the p tag class)
$ ('Newelementiner iner '). erase ('html ');
}
Window. addEvent ('domainready', function (){
$ ('New _ p'). addEvent ('click', newDiv );
$ ('Remove _ p'). addEvent ('click', removeDiv );
});


Learn more...

Take some time to read the Elements Section in the MooTools documentation:

  • The Element section contains most of the content we mentioned here, and there are many other contents.
  • Element. style can give you more control over Element style attributes (some things will be explained in detail in future tutorials)
  • Element. dimentions contains tools for processing location, coordinates, size, and other things.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.