Document: links プロパティ
値
HTMLCollection
です。
例
js
for (const link of document.links) {
const linkHref = document.createTextNode(link.href);
const lineBreak = document.createElement("br");
document.body.appendChild(linkHref);
document.body.appendChild(lineBreak);
}
仕様書
Specification |
---|
HTML Standard # dom-document-links-dev |
ブラウザーの互換性
BCD tables only load in the browser