如何用 javascript 擦除所有内联样式,只保留 css 样式表中指定的样式?

如果我在 html 中有以下内容:

<div style="height:300px; width:300px; background-color:#ffffff;"></div>

这是我的 CSS 样式表:

div {
width:100px;
height:100px;
background-color:#000000;
}

有没有办法,用 javascript/jquery,删除所有的内联样式,只留下 CSS 样式表指定的样式?

114556 次浏览

$('div').attr('style', '');

or

$('div').removeAttr('style'); (From Andres's Answer)

To make this a little smaller, try this:

$('div[style]').removeAttr('style');

This should speed it up a little because it checks that the divs have the style attribute.

Either way, this might take a little while to process if you have a large amount of divs, so you might want to consider other methods than javascript.

$('div').removeAttr('style');

You could also try listing the css in the style sheet as !important

I was using the $('div').attr('style', ''); technique and it wasn't working in IE8.

I outputted the style attribute using alert() and it was not stripping out inline styles.

.removeAttr ended up doing the trick in IE8.

Plain JavaScript:

You don't need jQuery to do something trivial like this. Just use the .removeAttribute() method.

Assuming you are just targeting a single element, you can easily use the following: (example)

document.querySelector('#target').removeAttribute('style');

If you are targeting multiple elements, just loop through the selected collection of elements: (example)

var target = document.querySelectorAll('div');
Array.prototype.forEach.call(target, function(element){
element.removeAttribute('style');
});

Array.prototype.forEach() - IE9 and above / .querySelectorAll() - IE 8 (partial) IE9 and above.

This can be accomplished in two steps:

1: select the element you want to change by either tagname, id, class etc.

var element = document.getElementsByTagName('h2')[0];

  1. remove the style attribute

element.removeAttribute('style');

If you need to just empty the style of an element then:
element.style.cssText = null;
This should do good. Hope it helps!