현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
links
속성은 document 내에서 href attribute 를 가지는 모든 <area>
과 <a>
element 들의 collection 을 반환한다.
Syntax
nodeList = document.links
Example
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); }
Specifications
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'Document.links' in that specification. |
Living Standard | |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'document.links' in that specification. |
Recommendation | Initial definition |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |