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


 < style>
 html,body {
保证金:0px;
宽度:100%;
 }
 .center-text {
 text-align:center;
 }
< / style>



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

答案 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