Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to find p elements under all div

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to find all the p elements under div". The explanation in the article is simple and clear and easy to learn and understand. Please follow the editor's train of thought to study and learn "how to find all the p elements under div".

Working With Plain Objects (using normal objects)

Currently, only ordinary JavaScript objects wrapped in jQuery are supported: .data (), .prop (), .bind (), .unbind (), .trigger (), and .triggerHandler (). Using .data () (or any method that returns .data ()), a new property named jQuery {randomNumber} (such as jQuery123456789) is generated in a normal object.

/ / define a plain object

Var foo = {foo: "bar", hello: "world"}

/ / Pass it to the jQuery function

Var $foo = $(foo)

/ / test accessing property values

Var test1 = $foo.prop ("foo"); / / bar

/ / test setting property values

$foo.prop ("foo", "foobar")

Var test2 = $foo.prop ("foo"); / / foobar

/ / test using .data () as summarized above

$foo.data ("keyName", "someValue")

Console.log ($foo); / / will now contain a jQuery {randomNumber} property

/ / test binding an event name and triggering

$foo.bind ("eventName", function () {

Console.log ("eventName was called")

})

$foo.trigger ("eventName"); / / logs "eventName was called"

If .trigger ("eventName") is used, it searches for a "eventName" property on the object and tries to execute any processor attached to the jQuery after execution is complete. It does not check whether the property is a function. In order to avoid this situation, .dispaterHandler ("eventName") should be used instead.

$foo.triggerHandler ("eventName"); / / also logs "eventName was called"

Example:

Example: find all p elements under div and border them.

One

Two

Three

("div > p") .css ("border", "1px solid gray")

Thank you for your reading, the above is the content of "how to find all the p elements under div". After the study of this article, I believe you have a deeper understanding of how to find all the p elements under div, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report