我正在使用 JSON 从 Wordpress 网站接收内容并将其显示在我的移动应用程序上。我收到的 JSON 响应中有一些我不需要的内联样式。但是,我确实喜欢保留实际的 html 结构。这是我可以用 Javascript/jQuery 做的吗?
例如,我喜欢这样:
<span style="color: red;">some text</span>
<p style="text-align: right;">Other stuff</p>
转向这个:
<span>some text</span>
<p>other stuff</p>