Jquery Selectors

Publié le: 10 janvier 2017
sur la chaîne: Programers Point
46
0

jQuery selectors are one of the most important parts of the jQuery library.

jQuery Selectors
jQuery selectors allow you to select and manipulate HTML element(s).

jQuery selectors are used to "find" (or select) HTML elements based on their name, id, classes, types, attributes, values of attributes and much more. It's based on the existing CSS Selectors, and in addition, it has some own custom selectors.

All selectors in jQuery start with the dollar sign and parentheses: $().

The element Selector
The jQuery element selector selects elements based on the element name.

You can select all p elements on a page like this: $("p")

The #id Selector
The jQuery #id selector uses the id attribute of an HTML tag to find the specific element.

An id should be unique within a page, so you should use the #id selector when you want to find a single, unique element.

To find an element with a specific id, write a hash character, followed by the id of the HTML element:

$("#id")

The .class Selector
The jQuery class selector finds elements with a specific class.

To find elements with a specific class, write a period character, followed by the name of the class:

$(".class")


Sur cette page du site, vous pouvez voir la vidéo en ligne Jquery Selectors durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Programers Point 10 janvier 2017, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 46 fois et il a aimé 0 téléspectateurs. Bon visionnage!