<button type="submit" name="sending" id="addCustomCodeBtn">
headタグに追加する
</button>
<script>
document.getElementById('addCustomCodeBtn').addEventListener('click', function () {
// 新しいスクリプト要素を作成
var newScript = document.createElement('script');
// スクリプトの内容を設定
newScript.textContent = ` 入れたい内容(scriptタグはいらない) `;
// <head>内に新しいスクリプト要素を挿入
document.head.appendChild(newScript);
});
</script>
ボタンを押した時だけheadタグにscriptタグを追加する
Last updated at Posted at 2024-01-12
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme