Ich suche ein Plug-in, das den Stil schreiben und an das entsprechende Element im Stil ausgeben kann
zB:
<style>
.foobar { background: #fff; }
</style>
<p id="a" class="foobar"></p>
<p id="b" class="foobar"></p>
<!-- 转换为 ↓↓↓ -->
<p id="a" class="foobar" style="background: #fff;"></p>
<p id="b" class="foobar" style="background: #fff;"></p>
不知道你为什么要这样做、使用css是为了让浏览器缓存和更好的维护、输出到style中反而增加了这些问题
自己找到了
https://github.com/jonkemp/gu...