[Селектор] attributeHas(attribute)
Раздел "Selectors"
Выбрать элементы, которые имеют определенный атрибут. Учтите помещение '@' перед именем атрибута приводило к конфликту в версии 1.2.
Параметры
attributeHas(attribute)
1.0
attribute: имя атрибута.
Пример
[attribute]
Примеры
Пример:
Связать щелчок мышки с добавлением текста, находящегося в id, внутрь элемента div.
"jQuery"
$("div[id]").one("click", function(){ var idString = $(this).text() + " = " + $(this).attr("id"); $(this).text(idString); });
"HTML"
<div>no id</div> <div id="hey">with id</div> <div id="there">has an id</div> <div>nope</div>
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("div[id]").one("click", function(){ var idString = $(this).text() + " = " + $(this).attr("id"); $(this).text(idString); }); }); </script> </head> <body class="iframe"> <div>no id</div> <div id="hey">with id</div> <div id="there">has an id</div> <div>nope</div> </body> </html>
Версия jQuery 1.4.2
Документ создан 2010-08-21