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:

  1. L
  2. K
  3. T'
  4. T
  5. A
  6. O
  7. Z'
  8. Z
  9. #
var attr_name = attr.nodeName;

gdzie poszczególne człony oznaczają:

Prosty przykład:

  1. L
  2. K
  3. T'
  4. T
  5. A
  6. O
  7. Z'
  8. Z
  9. #
<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#

  1. L
  2. K
  3. T'
  4. T
  5. A
  6. O
  7. Z'
  8. Z
  9. #
interface Attr {
	readonly attribute DOMString nodeName;
}

Specyfikacje i inne materiały#

Pasek społecznościowy

SPIS TREŚCI AKTUALNEJ STRONY

Attr (H1) Attr.nodeName (H2) Opis działania (H3) Składnia Web IDL (H3) Specyfikacje i inne materiały (H3)