我的网站使用主题“BeTheme”构建在Wordpress上,它创建了像空内联样式(style =“”)的html垃圾。
如何删除此内容?
我想到了两种方法:如果我知道哪个php-File附加了style属性,我可以做类似的事情
if (style is empty)
{
don't attach style attribute
}
如果我无法到达那里,我可以用
之类的东西清理页面replace(style="", '')
如何在不减慢页面速度的情况下以优雅的方式实现这一目标?
答案 0 :(得分:2)
if ($("div").attr("style").length<=0)
{
$("div").removeAttr("style");
}