先做个铺垫吧。说说层叠样式表的三种形式(三种的叫法不一,按照各自的习惯):
一。内联样式:在HTML标签用style属性设置。如:
1 <p style="color:#f90">这是内联样式</p>
二。嵌入样式:通过<head>标签内通过<style>标签设置。如:
1 <style type="text/css">
2 /*这是嵌入样式*/
3 .stuff{color:#f90}
4 </style>
三。外部样式:通过<link>标签设置。如:
1 <link rel="stylesheet" href="path/style.css" type="text/css">
2
3 ============================================
4 /*外部样式*/
5 @charset "UTF-8"
6 .stuff{color:#f90}
推荐使用第三种方式。
下面该三位主角上场了。
第一位向我们缓缓走来的是style。它的使用方法是obj.style.attr某位影评人在他的博客中评价道:
style只能获取元素的内联样式,内部样式和外部样式使用style是获取不到的。
用下面代码验证了一下,确实如上所说。我使用了三种样式,得到的结果都是内联样式的值。
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
5 <title>无标题文档</title>
6 <link href="style.css" rel="stylesheet" type="text/css"/>
7 <style type="text/css">
8 #stuff{width:300px}
9 </style>
10 <script type="text/javascript">
11 window.onload = function(){
12 var oDiv = document.getElementById('stuff')
13 console.log(oDiv.style.width)
14 //alert(oDiv.style.width)
15 }
16
17 </script>
18 </head>
19
20 <body>
21 <div id="stuff" style="width:400px"></div>
22 </body>
23 </html>
外链样式表style.css:
1 @charset "utf-8"2 /* CSS Document */ 3 #stuff{width:100px}
得到的结果是400px.
紧跟在style之后的是currentStyle,据说它有个强大的后盾MS,也就是说这家伙只能在IE浏览器里能用。其他的不好使。它的使用方法是window.currentStyle["attr']或者window.currentStyle.attr。在IE中获取内嵌样式表中width的属性值为300px,在Mozilla Firefox中无法通过。
最后一位走来的是getComputedStyle,它的用法是window.getComputedStyle(ob, pseudoElt)["attr']或window.getComputedStyle(ob, pseudoElt).attr。其中,pseudoElt表示如 :after,:before之类的伪类,如果不用伪类的话设置为null即可。
还是那位影评人评论道:
getComputedStyle同currentStyle作用相同,但是适用于FF、opera、safari、chrome。
抱着怀疑的态度,我又验证了一下,果然IE7,IE8,IE9都报错了:
对象不支持“getComputedStyle”属性或方法
<img src="http://www.it165.net/uploadfile/files/2014/0624/20140624200921240.jpg" alt="鷌莰ky" http:="" www.it165.net="" edu="" ewl="" "="" target="_blank" class="keylink" style="border: 1px solid rgb(204, 204, 204)padding: 5pxmargin: 0pxlist-style: nonewidth: 650pxheight: 322.5997045790251px">浏览器的兼容性问题。浏览器的兼容性问题对于前端开发者来说确实是一个头疼的问题,尤其是罪魁祸首IE6。但是我们不能惧而远之,而是见招拆招,兵来将挡水来土掩。在和它战斗的过程中你会得到很多的乐趣,以及战胜它之后的成就感!!!
另外说一点:getComputedStyle和currentStyle只能获取属性值,无法设置属性。如果想设置属性值,可是使用ob.style.attr.
这个不难,上面的就只给出代码,现在就让我教你如何查看别人空间的代码吧。首先进入你要获取代码的空间,再点击浏览器的菜单“查看”---“源文件”(Maxthon是“查看”---“源文件”),这时会打开网页的源文件,按ctrl+F,用“CSS”进行查找,能找到“href="/wwwz9/css/item/65eab3196de0a64543a9ad80.css">”这样的字样。把这段的“/css/item/65eab3196de0a64543a9ad80.css”复制下来,粘贴到地址栏的“http://hi.baidu.com/wwwz9”后面,变这样“http://hi.baidu.com/wwwz9/css/item/65eab3196de0a64543a9ad80.css”按下回车,就能看到别人的CSS代码了。
看看这篇文章吧。
http://hi.baidu.com/wwwz9/blog/item/fa75d1c8aafa81177e3e6f5f.html