Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.links

Podsumowanie

Własność links zwraca zestaw wszystkich elementów AREA i A z ustawioną wartością atrybutu href.

Składnia

listaWęzłów = document.links 

Przykład

var links = document.links;
for(var i = 0; i < links.length; i++) {
  var linkHref = document.createTextNode(links[i].href);
  var lineBreak = document.createElement("br");
  document.body.appendChild(linkHref);
  document.body.appendChild(lineBreak);
}

Specyfikacja

links

 

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, khalid32, Mgjbot, Jan Dudek
 Ostatnia aktualizacja: khalid32,