search
Homephp教程PHP开发jQuery starting tutorial: using selectors and events

jQuery starting tutorial - using selectors and events
jQuery provides two ways to select HTML elements:

The first is to use CSS and Xpath selectors to combine to form a string to be sent to jQuery's constructor ( Such as: $("div > ul a"));

The second method is to use several methods of jQuery objects. These two methods can also be used in combination.



To test these selectors, let's try to select and modify the first ordered list in our starterkit.html.

First, we need to select the list itself, which has an ID called "orderedlist" The usual JavaScript writing is the document.GetelementByid ("OrderEdlist"). In jQuery, we do this: $ (docume). READY () ");
}); Here a CSS style red in the starterkit is attached to the orderedlist (Translator Keel’s note: refer to core.css in the css directory in the test package, which defines the red style). So, after you refresh the starterkit.html, you will see that the background color of the first ordered list changes to red, while the second ordered list remains unchanged.
Now, let’s add some New styles to the child nodes of the list.$(document).ready(function() {
            $("#orderedlist > li").addClass("blue");
}); In this way, all li in the orderedlist All have the style "blue" appended.

Now let’s do something a little more complicated, switching styles when the mouse is placed on and away from the li object, but it only takes effect on the last element of the list. $(document).ready(function() {
                                                                              $(document). $(this).removeClass("green");
});
}); There are also tons of similar CSS and XPath examples. More examples and lists can be found here. (Translator Keel’s note: Read this article to get started. Cultivation depends on the individual. If you want to know more after getting started, you must read the links in this paragraph sooner or later!)

Every onXXX event is valid, such as onclick, onchange, onsubmit, etc. all have jQuery equivalent representation methods (Translator Keel's note: jQuery doesn't like onXXX, so they were changed to XXX and on was removed). Some other events, such as ready and hover, also provide corresponding methods.

You can find the full event list in Visual jQuery, under the Events column.

You can already do a lot of things with these selectors and events, but here is something even better! $(document).ready(function() {
                                                                                                                                               + " BAM! " + i );
         });
});


find() allows you to perform a conditional search in the selected element, so $("#orderedlist).find("li") is Like $("#orderedlist li").

each() iterates over all li, and can do more processing on this basis. Most methods, such as addClass(), can use their own. each().

In this example, html() is used to get the html text of each li, append some text, and set it as the html text of li. (Translator Keel's note: You can see from this example. The .html() method is to get the html code of the object, and .html('xxx') is to set 'xxx' as the html code of the object)



Another often encountered task is to call some methods on DOM elements that are not covered by jQuery. Imagine a reset after you successfully submit it using AJAX: $(document).ready(function() {
/ / use this to reset a single form
                                                                                                     Keel's note: The author here also writes the id of the form as form. The source file has

. This is a very bad way of writing. You can change the ID to form1 or testForm, and then use $ ("#form1") or $("#testForm") to represent it, and then test it. )

This code selects all elements with the ID "form" and calls a reset( on the first one. ). If you have more than one form, you can do this: $(document).ready(function() {
                                                                                                                                                                                         
                                                                   You have to write these codes yourself in custom .js and test the effect on starterkit.html to get a feel for it! Observe the html code of starterkit.html if necessary)

In this way, after clicking the Reset link, you will select all the form elements in the document and modify them reset() is executed once.

Another problem you may have to face is not wanting certain elements to be selected. jQuery provides filter() and not() methods to solve this problem. filter() uses a filter expression to reduce the selected items that do not match the filter expression, and not() is used to cancel all selected items that match the filter expression. Consider an unordered list, and you want to select all elements that do not have ul subelements. li element. $(document).ready(function() {
               $("li").not("[ul]").css("border", "1px solid black");
});This code selects all li elements, and then remove the li elements without ul sub-elements. After refreshing the browser, all li elements have a border, except for the li element of the ul sub-element.

(Translator Keel’s note: Please pay attention to the extremely convenient css() method, and remind you again to actually test and observe the effect. For example, what about changing a CSS style? What about adding another CSS style? Like this: $(" li").not("[ul]").css("border", "1px solid black").css("color","red");)

The [expression] syntax in the above code is from Coming from XPath, it can be used as a filter on elements and attributes. For example, you may want to select all links with a name attribute: a[@name]").background("#eee");
});This code adds a background color to all links with the name attribute. (Translator Keel's note: This color is too subtle, it is recommended to write it as $("a[@name]").background("red");)

The more common situation is to select the link by name, you may need Choose a link with a characteristic href attribute. The understanding of href may be inconsistent in different browsers, so we use partial matching ("*=") instead of full matching ("="): $(document ).ready(function() {
                                                                                   );
});Up to now, selectors have been used to select child elements or filter elements. Another situation is to select the previous or next element, such as a FAQ page. The answer will be hidden first. When the question is clicked, the answer will be displayed. The jQuery code is as follows: $(document).ready(function() {
$('#faq').find('dd').hide().end().find('dt').click(function() {
      var answer = $(this).next();
if (answer.is(':visible')) {
                                                                                                                                  });Here we use some chain expressions to reduce the amount of code and make it look more intuitive and easier to understand. Like '#faq' is only selected once, using the end() method, the first find() method will end (undone), so we can continue to find('dt') later without writing $( '#faq').find('dt').

In the click event, we use $(this).next() to find a dd element immediately below dt, which allows us to quickly select the answer under the clicked question.

(Translator Keel's note: This example is really cool. The answers in the FAQ can be shrunk! From the idea of ​​using next() to realizing these effects, there are many places that we need to digest. Pay attention to if (answer.is(': visible')) usage, pay attention to answer.slideUp(); if you don’t understand anything, please check the two must-read API documents I mentioned at the beginning)

In addition to selecting elements of the same level, you can also select the parent level element. Maybe you want to highlight the parent element of a link in a certain paragraph of the article when the user moves the mouse. Try this: $(document).ready(function() {
           ("a").hover(function() {
                                                                                                                                                                                        ("a"). ).removeClass("highlight");
     });
}); As you can see from the test results, when you move a link to a certain section of the article, the section where it is located will all use the highlight style, and it will return to its original state after it is removed.

(Translator Keel’s note: highlight is the style defined in core.css. You can also change it. Note that there is a second function() here. This is the characteristic of the hover method. Please check hover in the API document. It is also mentioned above. Example)
Let’s take a look at this step before we continue: jQuery will make the code shorter and easier to understand and maintain. Here is the abbreviation of $(document).ready(callback): $(function( ; alert("Hello world!");
      });
}); Now that we have these basic knowledge in hand, we can further explore other aspects, starting with AJAX!

For more related articles, please pay attention to the PHP Chinese website (www.php.cn)!



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
css中id选择符的标识是什么css中id选择符的标识是什么Sep 22, 2022 pm 03:57 PM

在css中,id选择符的标识是“#”,可以为标有特定id属性值的HTML元素指定特定的样式,语法结构“#ID值 {属性 : 属性值;}”。ID属性在整个页面中是唯一不可重复的;ID属性值不要以数字开头,数字开头的ID在Mozilla/Firefox浏览器中不起作用。

使用:nth-child(n+3)伪类选择器选择位置大于等于3的子元素的样式使用:nth-child(n+3)伪类选择器选择位置大于等于3的子元素的样式Nov 20, 2023 am 11:20 AM

使用:nth-child(n+3)伪类选择器选择位置大于等于3的子元素的样式,具体代码示例如下:HTML代码:<divid="container"><divclass="item">第一个子元素</div><divclass="item"&

css伪选择器学习之伪类选择器解析css伪选择器学习之伪类选择器解析Aug 03, 2022 am 11:26 AM

在之前的文章《css伪选择器学习之伪元素选择器解析​》中,我们学习了伪元素选择器,而今天我们详细了解一下伪类选择器,希望对大家有所帮助!

javascript选择器失效怎么办javascript选择器失效怎么办Feb 10, 2023 am 10:15 AM

javascript选择器失效是因为代码不规范导致的,其解决办法:1、把引入的JS代码去掉,ID选择器方法即可有效;2、在引入“jquery.js”之前引入指定JS代码即可。

从入门到精通:掌握is与where选择器的使用技巧从入门到精通:掌握is与where选择器的使用技巧Sep 08, 2023 am 09:15 AM

从入门到精通:掌握is与where选择器的使用技巧引言:在进行数据处理和分析的过程中,选择器(selector)是一项非常重要的工具。通过选择器,我们可以按照特定的条件从数据集中提取所需的数据。本文将介绍is和where选择器的使用技巧,帮助读者快速掌握这两个选择器的强大功能。一、is选择器的使用is选择器是一种基本的选择器,它允许我们根据给定条件对数据集进

css中的选择器包括超文本标记选择器吗css中的选择器包括超文本标记选择器吗Sep 01, 2022 pm 05:25 PM

不包括。css选择器有:1、标签选择器,是通过HTML页面的元素名定位具体HTML元素;2、类选择器,是通过HTML元素的class属性的值定位具体HTML元素;3、ID选择器,是通过HTML元素的id属性的值定位具体HTML元素;4、通配符选择器“*”,可以指代所有类型的标签元素,包括自定义元素;5、属性选择器,是通过HTML元素已经存在属性名或属性值来定位具体HTML元素。

深度解析is与where选择器:提升CSS编程水平深度解析is与where选择器:提升CSS编程水平Sep 08, 2023 pm 08:22 PM

深度解析is与where选择器:提升CSS编程水平引言:在CSS编程过程中,选择器是必不可少的元素。它们允许我们根据特定的条件选择HTML文档中的元素并对其进行样式化。在这篇文章中,我们将深入探讨两个常用的选择器,即:is选择器和where选择器。通过了解它们的工作原理和使用场景,我们可以大大提升CSS编程的水平。一、is选择器is选择器是一个非常强大的选择

wxss选择器有哪些wxss选择器有哪些Sep 28, 2023 pm 04:27 PM

wxss选择器有元素选择器、类选择器、ID选择器、伪类选择器、子元素选择器、属性选择器、后代选择器和通配选择器等。详细介绍:1、元素选择器,使用元素名称作为选择器,选取匹配的元素,使用“view”选择器可以选取所有的“view”组件;2、类选择器,使用类名作为选择器,选取具有特定类名的元素,使用“.classname”选择器可以选取具有“.classname”类名的元素等等。

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)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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.