Attr#
Attr.nodeName#
Właściwość name
zwraca nazwę kwalifikowaną dla danego atrybutu. Jest ona historycznym aliasem dla właściwości Attr.name
i z zasady nie należy jej używać w aktualnym kodzie produkcyjnym. Właściwość jest tylko do odczytu.
Opis działania#
Samo wywołanie i poszczególne jego części najlepiej objaśnić na zapisie składniowym:
var attr_name = attr.nodeName;
gdzie poszczególne człony oznaczają:
- attr_name - łańcuch znakowy reprezentujący nazwę kwalifikowaną atrybutu.
- attr - atrybut będący obiektem kontekstu.
Prosty przykład:
<script>
var html = document.documentElement; // referencja do elementu HTML
html.setAttributeNS("www.test.com", "p:AAA", "Test"); // ustawiamy nowy atrybut
var attr = html.attributes; // pobieramy listę atrybutów
var firstAttr = attr[0]; // referencja do pierwszego atrybutu z listy
document.write("Ustawiamy własny atrybut dla elementu HTML:");
document.write("<br>");
document.write("html.setAttributeNS('www.test.com', 'p:AAA', 'Test');");
document.write("<br><br>");
document.write("Pobieramy listę atrybutów elementu HTML:");
document.write("<br>");
document.write("html.attributes: " + attr); // [object NamedNodeMap]
document.write("<br>");
document.write("attributes.length: " + attr.length); // 1
document.write("<br><br>");
document.write("Odczytujemy właściwości pierwszego atrybutu z listy:");
document.write("<br>");
document.write("attributes[0]: " + firstAttr); // [object Attr]
document.write("<br>");
document.write("attributes[0].value: " + firstAttr.value); // Test
document.write("<br>");
document.write("attributes[0].nodeValue: " + firstAttr.nodeValue); // Test
document.write("<br>");
document.write("attributes[0].textContent: " + firstAttr.textContent); // Test
document.write("<br>");
document.write("attributes[0].name: " + firstAttr.name); // p:AAA
document.write("<br>");
document.write("attributes[0].nodeName: " + firstAttr.nodeName); // p:AAA
document.write("<br>");
document.write("attributes[0].localName: " + firstAttr.localName); // AAA
document.write("<br>");
document.write("attributes[0].prefix: " + firstAttr.prefix); // p
document.write("<br>");
document.write("attributes[0].namespaceURI: " + firstAttr.namespaceURI); // www.test.com
document.write("<br>");
document.write("attributes[0].ownerElement: " + firstAttr.ownerElement); // [object HTMLHtmlElement]
document.write("<br>");
document.write("attributes[0].specified: " + firstAttr.specified); // true
document.write("<br><br>");
document.write(Attr.prototype.hasOwnProperty("nodeName")); // true
document.write("<br>");
document.write(firstAttr.__proto__.hasOwnProperty("nodeName")); // true
document.write("<br>");
document.write(firstAttr.__proto__); // [object AttrPrototype]
</script>
Właściwość nodeName
dla interfejsu Attr pojawia się dopiero w specyfikacji DOM4, ale tylko ze względu na kompatybilność wsteczną. W poprzednich specyfikacjach właściwość była dziedziczona z interfejsu Node.
Na chwilę obecną żadna aktualna przeglądarka internetowa nie obsługuje właściwość nodeName
zgodnie z najnowszymi wymaganiami specyfikacji DOM4, wszystkie programy implementują wcześniejsze wytyczne (szczegóły).
Składnia Web IDL#
interface Attr { readonly attribute DOMString nodeName; }