jQuery attribute value selector in Hindi
Автор: Nitya Gupta
Загружено: 2017-04-29
Просмотров: 272
Описание:
In this video we will discuss
Attribute Equals Selector [name="value"]
Attribute Not Equal Selector [name!="value"]
Attribute Contains Selector [name*="value"]
Attribute Contains Word Selector [name~="value"]
Attribute Contains Prefix Selector [name|="value"]
Attribute Starts With Selector [name^="value"]
Attribute Ends With Selector [name$="value"]
$('[title="div1Title"]') // Selects all elements that have title attribute value equal to div1Title
$('[title!="div1Title"]') // Selects all elements that have title attribute value not equal to div1Title
$('[title*="Title"]') // Selects all elements that have title attribute value containing the given substring - Title
$('[title~="mySpan"]') // Selects all elements that have title attribute value containing the given word - mySpan, delimited by spaces
$('[title|="myTitle"]') // Selects all elements that have title attribute value equal to myTitle or starting with myTitle followed by a hyphen (-)
$('[title^="div"]') // Selects all elements that have title attribute value starting with div
$('[title$="Heading"]') // Selects all elements that have title attribute value ending with Heading
Повторяем попытку...

Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: