search
HomeWeb Front-endJS TutorialjQuery DOM operations change pages based on commands_jquery

Uh, it looks like an advertisement? Haha, but it is indeed the case. jQuery provides us with a wealth of DOM operation methods to make these complex DOM operations simple.
It seems like a long time has passed since the last time I wrote about jQuery. It is indeed necessary to write this section. Haha, Let's Go~
Operation attributes:
As we said before. The addClass() and .removeClass() methods actually change the DOM attribute: className.
Speaking of which, I have to mention again why the class name of the element is called className instead of directly called class, because class is a reserved word of js. Um.
In addition to class, there are other attributes of DOM elements, such as id, rel and href. How do we operate these attributes?
Don’t worry, jQuery provides .attr() and .removeAttr() methods.
Even, you can use these two methods to replace the .class() method - if you want to cause yourself some trouble, haha. .
Next, let us change the red words into green. Moreover, I like GOOGLE, but some people like Baidu, so good, let us choose the one we like.

Copy code The code is as follows:

There is a hyperlink here, the address of the hyperlink is < ;a href='http:/www.baidu.com' target='_blank' class='link'>Baidu


Click this button to let Baidu Change to GOOGLE, click again to change it back to Baidu


There are a few words here. The color of the words is red, I am red, I am red
< ;br/>
Click this button to make red turn green

Copy code The code is as follows:

$(document).ready(function(){
$(' #but_link').toggle(function(){
$('.link').attr('href','http://www.google.com');
$('.link' ).text('GOOGLE');
$(this).attr('value','Let's become BAIDU');
},function(){
$('.link'). attr('href','http://www.baidu.com');
$('.link').text('Baidu');
$(this).attr('value' ,'GOOGLE');
});
$('#but_color').toggle(function(){
$('.font').attr('color','green ');
$('.font').text('I am green, I am green');
$(this).attr('value','Turn it red');
},function(){
$('.font').attr('color','red');
$('.font').text('I am red, I am red ');
$(this).attr('value','turn it green');
});
});

If you want to loop Some DOM objects are processed, such as the example in the book. If you want to give each A tag under a DIV a unique ID
, then you can use jQuery's .each() method, which is similar to a Iterator, a bit like PHP's foreach
Copy code The code is as follows:

$(document) .ready(function() {
$('div.chapter a').each(function(index) {
$(this).attr({
'id': 'wikilink-' index ,
});
});
});

This index parameter is similar to a counter, its value is 0 for the first link, and then for each link Its value will be incremented by 1 for each subsequent link. And so on.
Well, wait for these examples later, I will give the demonstration address together. But unfortunately, the address in my foreign space has been blocked. Um.
In-depth understanding of the $() factory function:
Actually, we have been using this factory function since we first started taking this note.
In a sense, this function is at the core of the jQuery library, because it is indispensable when adding effects, events
or adding attributes to a matched set of elements.
However, in addition to selecting elements, there is another mystery inside the parentheses of the $() function - this powerful feature allows the $() function not only to change the visual appearance of the page,
but also to change the page actual content. As long as you put a set of HTML elements within this pair of parentheses, you can easily change the entire DOM structure.
For example, the example in the book is very appropriate because I did write FAQ. . .
The FAQ is always a question-and-answer type (self-question and self-answer type). Well, because some answers are too long, you need to add a Back to top
after it, you can write like this
Copy codeThe code is as follows:

$(document).ready(function){
$('back to top');
$('< ;a id="top">');
});

In this way, a hyperlink "Back to top" is added after each paragraph. And also adds a "top" anchor.
What? You said you didn't see it? Uh, okay. . I admit that I haven't inserted this new element into the DOM yet, I've just created it.
Insert new elements:
jQuery provides two methods to insert elements in front of other elements: .insertBefore() and .before().
These two methods have the same effect, their difference depends on how they are concatenated with other methods.
Then, naturally, if you are smart, you will think that the methods to insert after other elements are .insertAfter() and .after().
For the "back to top" we just used the .insertAfter() method, the reason is that we need to add this link after each answer. . Um.
Copy code The code is as follows:

$(document).ready(function){
$('back to top').insertAfter('div.chapter p');
$('');
});

The same task as .insertAfter() can also be accomplished through the .after() method, except that the selector expression must be Place it before this method, not after it.
When using the .after() method, the first line of code in $(document).ready() can be rewritten as follows:
$('div.chapter p').after('< ;a href="#top">back to top');
Using .insertAfter(), you can continuously operate on the created element by connecting more methods.
With .after(), the operation object of other methods of concatenation becomes the element matched by the selector in $('div.chapter p').
So, what should we do if we want to insert a new element into the element? What I just said are the elements that make it a brother. And how to insert child elements?
Don’t worry, there is a .prependTo() method.
Copy code The code is as follows:

$('').prependTo('body');

.prependTo() method inserts a stroke as the target, and we add a group of Fully functional back to top link.
Similarly, jQuery also provides a method called .prepend(). According to the API, its function is:
Append content to each matching element.
This operation is similar to executing the appendChild method on specified elements to add them to the document.
For example:
Copy code The code is as follows:

I would like I would like to say: Hello


-->$("p").append("Hello");


Wrapper element:
The method in jQuery for wrapping elements in other elements is aptly named: .wrap().
If you want to wrap the

tag inside a

Test Paragraph.


Inside the div,

Test Paragraph.


You can write like this
$("p").wrap(document.getElementById('content'));
Copy element:
The highlight is finally out. . Um. Copy the element. .
Cloning has been implemented at the beginning of this year, but it seems that they rarely shout recently. The most popular thing is the need for human cloning. It’s strange to think about it. What should I do if I steal your wife after cloning?
Ugh. Stop gossiping. . jQuery’s cloning method is .clone(). Um. Relative to the insert method, it is equivalent to copy and paste.
By default, the .clone() method will copy not only the matching element, but also all its descendant elements.
The book says that this method also accepts parameters. If the parameter value is false, then only the matching element will be copied, not its child elements.
But this is not the case after my experiment. . Um.



Copy code The code is as follows:

I am a DIV with content


$('#but_clone').click(function(){
$('#xxx').clone(false).insertAfter($('#xxx')) ;
});

The book says that clone(false) will not copy the content in the subtag, but my experiment is that the content of the subtag will still be copied. . This is one difference.
In addition, the book says that clone() will not copy the element's events. This is also possible after I tested it. . Um. . Still weird. . well.

When you need to reference a jQuery object multiple times, the best way is to save them into variables.
In this way, by reducing calls to jQuery’s $() factory function, the speed of DOM traversal can be improved. .
Well, this chapter is simply recorded. It's a bit regretful because I can't explain it to everyone based on the examples in the book. That would be copying this book.
Intermittently, because I need to eat. So it took me a long time to write this section, but I am quite satisfied with the overall effect. hehe.
Now, copy this paragraph from the book. Um. This is a simple summary of the
DOM operation methods:
To insert a new element into each matching element, use:
.append()
.appendTo()
.prepend()
.prependTo()
To insert a new element at the same position as each matched element, use:
.after()
.insertAfter()
.before()
.insertBefore()
To insert a new element outside each matched element, use:
.wrap()
To replace each matched element with a new element or text, use:
. html()
.text()
To remove each matching element from the document, use:
.empty()
To remove each matching element and its To descend descendant elements, without actually removing them, use:
.remove()
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
JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

Demystifying JavaScript: What It Does and Why It MattersDemystifying JavaScript: What It Does and Why It MattersApr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Is Python or JavaScript better?Is Python or JavaScript better?Apr 06, 2025 am 12:14 AM

Python is more suitable for data science and machine learning, while JavaScript is more suitable for front-end and full-stack development. 1. Python is known for its concise syntax and rich library ecosystem, and is suitable for data analysis and web development. 2. JavaScript is the core of front-end development. Node.js supports server-side programming and is suitable for full-stack development.

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)