在介绍js操作css样式之前,我先给大家介绍一下css样式在网页html中是如何加载的,在html页面中加载css样式可以分为三种表现形式,分别为:内嵌样式(Inline Style)、内部样式(Internal Style Sheet)、外联样式(External Style Sheet)。
内嵌样式即为在DOM元素中直接添加style属性来改表元素效果,如:<div style="color:#f00">内嵌样式</div>。它只能改变该元素样式。
外联样式即加载外部css样式文件,它有两种方式加载外部样式,一种是:<link rel="stylesheet" type="text/css" href="test.css" /> ,另一种是:<style type="css/text">@import test.css</style>。
最后我们来说说js如何操作css样式的。
1、js操作内嵌样式。
<script type="text/javascript">
document.getElementById('test').style.color = '#000';
</script>
2、js操作内部样式。
<script type="text/javascript">
方法一:
</script>
方法二:
<script type="text/javascript">
IE:elementObj.currentStyle
w3c标准:window.getComputedStyle(elementObj, null) 或 document.defaultView.getComputedStyle(elementObj, null )
document.defaultView.getComputedStyle?document.defaultView.getComputedStyle(id,null).getPropertyValue("background-color"):id.currentStyle["backgroundColor"];
</scirpt>
3、js操作外联样式。