js获取元素外链样式的方法
本文实例讲述了js获取元素外链样式的方法。分享给大家供大家参考。具体分析如下:
一般给元素设置行内样式,如<divid="div1"style="width:500px;"></div>。如要获取它的样式,即可document.getElementById("div1").style.width来获取或设置。但是如果样式是在外链link中的或者是页面的非行内样式,就获取不到了。
在标准浏览器中可以通过window.getComputedStyll(obj,null)[property]来获取外链样式,但是在ie浏览器中则是通过obj.currentStyle来获取。
完整html代码如下:
<!DOCTYPEhtml>
<html>
<head>
<title>js获取元素外链样式</title><basetarget="_blank"/>
<styletype="text/css">
p{
width:500px;
line-height:30px;
}
</style>
<scriptsrc="jquery/jquery-1.11.2.min.js">
</script>
<script>
functiongetstyle(obj,property){
if(obj.currentStyle){
returnobj.currentStyle[property];
}elseif(window.getComputedStyle){
returndocument.defaultView.getComputedStyle(obj,null)[property];//或者也可以通过window.getComputedStyle来获取样式
}
returnnull;
}
$(document).ready(function(){ $("p").click(function(){ alert(getstyle(this,"width")); }); }); </script>
</head> <body> <pstyle="width:750px;">如果您点击我,弹出宽度。</p> <p>点击我,弹出宽度。</p> <p>也要点击我~O(∩_∩)O~。</p>
</body> </html>