使用jquery获取html文件中<style>标记内的所有内容

时间:2017-06-07 10:46:32

标签: javascript jquery html css

我有一个html文件和一些写在样式标签内的CSS。我要求在此标记内提取文本。例如:

&#xA;&#xA;
 &lt; style&gt;&#xA; html,body {&#xA;保证金:0px;&#xA;宽度:100%;&#XA; }&#XA; .center-text {&#xA; text-align:center;&#xA; }&#xA;&lt; / style&gt;&#xA;  
&#xA;&#xA;

我需要使用jquery在字符串中提取此标记内的值。我尝试了几个帖子,但无法得到任何合适的答案。

&#XA;

1 个答案:

答案 0 :(得分:0)

have you tried this?

$("#YourDiv").html($("style").html())

this will get css code as string and put it into div if you need to save it to db you can send it via ajax to your server