1,node.style:获取的是行内样式
<p style="color:red">段落</p>
<script>
var Op=document.querySelector("p");
console.log(Op.style.color);
</script>
2,window.getComputedStyle(node):获取计算后的样式[最终样式]
<style>
p{
color:red;
}
</style>
<p>段落</p>
<script>
var Op=document.querySelector("p");
console.log(window.getComputedStyle(Op)[color]);
</script>