从php中的样式过滤字符串

时间:2013-06-26 05:15:53

标签: php javascript css

我有一个这样的字符串,这个字符串在< P>< span>< font>中有一些内联样式标签

  

< p style ='color:red;字体大小:21px'><跨度   style ='color:blue;'>< font style ='font-family:Arial'>这是   我的字符串演示< / font>< / span>< / p>

我想要这样的结果

  

< p>< span>< font>这是我的字符串   演示< /字体>< /跨度>< / p为H.

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

从HTML字符串创建一个jQuery对象,然后使用.removeAttr():

  

var $ result = $(yourHTMLString);

     

$ result.find( '[式]')removeAttr( '风格');