DOM操作する
htmlを読み込む
code:ts
const html =`
<h1>Hello World!</h1>
`;
const doc = new DOMParser().parseFromString(html, "text/html")!;
HTMLDivElementなどはない。全て Element
element.valueやelement.hrefではなく、element.getAttribute('value')やelement.getAttribute('href')を使う必要がある
値を取得する
code:ts
const p = doc.querySelector("p")!;
console.log(p.textContent);