🏷️

GAS の変数を HTML として出力

2020/10/11に公開

GAS を使って HTML を出力した際、スプレッドシートから読み込んだデータ(iframeタグ)を、GAS側の HTML で表示する際の例。

GAS

var tag = '<iframe src="https://www.hoge.jp/"></iframe>';

HTML

<script>document.write(<?= tag ?>);</script>

Discussion