jQuery Tutorial : addClass() Method
https://art-of-engineer.blogspot.com/2021/05/addclass-in-jquery.html
Lets take a look at the add Class method in jquery.
The addClass method in jQuery is used to add the specified class or classes to the required elements.
Please note that the addClass method will append new classes to specified elements and does not replace or remove the existing classes of an element.
Lets see an example.
lets write a class 'selected' which has a property 'color:blue'.
lets write a single paragraph in the html body.
We also have a button 'Click Me' on click of which we will be executing the javascript function 'myFunction'.
We see that the text gets highlighted on click of button because the function appends new class in to the paragraph.
Please note that if we have multiple paragraph elements in our html body, all of them will be highlighted blue.
Lets see an example.
If you would like to add the class only to a specific element, for example 2nd paragraph element, we can make use of something called nth child selector.
We can add multiple classes to an element by separating each class name with a space.
We can also write a function inside the addClass method which conditionally returns the required class by checking the index or current class of a specific element.
we are checking if index is equal to 2. In other words, if it is a second paragraph, we append the classes.
We can now remove the nth child selector as we are doing it inside the function by checking the index.
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «jQuery Tutorial : addClass() Method», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.