HTMLTemplateElement: content プロパティ

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since November 2015.

HTMLTemplateElement.content プロパティは、<template> 要素のテンプレートの内容 (DocumentFragment) を返します。

js
const templateElement = document.querySelector("#foo");
const documentFragment = templateElement.content.cloneNode(true);

仕様書

Specification
HTML Standard
# dom-template-content-dev

ブラウザーの互換性

BCD tables only load in the browser

関連情報