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 的 content 属性插入脚本标签?
下面的示例插入纯文本而不是 html 标记
#someDiv:before { content:"<script>$(function(){ console.log('test');});</script>"; }
使用该属性插入的内容content将永远是纯文本。这是为了防止递归。它还有助于防止人们做一些疯狂的事情,比如script用 CSS 插入元素。
content
script