Если требуется просто сбросить стили, то можно также и "обнулить"
<style>
.text_class {
color: green;
}
</style>
<div><p class="text_class" style="font-family:arial">text</p></div>
<script>
window.onload = function () {
alert(document.body.children[0].innerHTML);
document.body.children[0].children[0].style.cssText = '';
document.body.children[0].children[0].className = '';
alert(document.body.children[0].innerHTML);
}
</script>