有沒有辦法將html文檔中的硬編碼樣式提取到外部CSS文件?如果不是,你有一個想法如何做到這一點?你以前做過嗎?從HTML文件提取CSS樣式到外部CSS文件
自例如
<div style="background-color: red">
<a style="font-weight: bold"></a>
</div>
到
<div id='st-01'>
<a id='st-02'><a/>
</div>
#st-01 { background-color: red }
#st-02 { font-weight: bold }