Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CSSのコンテンツプロパティを使ってスクリプトタグを挿入することはできますか?
以下の例では、html タグの代わりにプレーン テキストを挿入します。
#someDiv:before { content:"<script>$(function(){ console.log('test');});</script>"; }