求這樣到一個插件,就是寫好樣式輸出到對應元素到style上
eg:
<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...