本文主要是介绍《JavaScript学习笔记六》:取非行间样式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
《JavaScript学习笔记六》:取非行间样式
1、取行间样式
如果我们在行间设置元素的样式,则我们可以直接使用obj.style.width来获取这个元素的宽度,这里的width可以换成obj的任意样式属性来获取对应的value。
下面我们来看一个例子:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>无标题文档</title></head><script>window.onload=function (){var oDiv = document.getElementById('div1');alert(oDiv.style.width);//这样只能取行间样式alert(oDiv.style.background);};</script><body><div id="div1" style="width:200px;height:100px;background:red;"></div></body></html>
2、取非行间样式
取非行间样式有两种方法:
1、obj.currentStyle[name]
2、getComputedStyle(obj,false)[name]
上面的两种方法并不是对所有的浏览器都适用,obj.currentStyle[name]对IE 11可行,对FireFox不行,而getComputedStyle(obj,false)[name]对FireFox、IE11可行,但是对低版本的IE不行。
因此,我们为解决上面的兼容器问题,我们可以写一个函数来进行处理:
function getStyle(oDiv,name){if(oDiv.currentStyle){return oDiv.currentStyle[name];}else{return getComputedStyle(oDiv,false)[name];}}
这样,当我们想获取某个元素的样式的value时,就可以调用上面的函数即可完成功能。有一点需要说明的是:利用上面的方法是不能取复合样式的,例如不能取元素样式的background。
具体例子如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>无标题文档</title><style>#div1 {width:200px;height:100px;background:red;}</style><script>function getStyle(oDiv,name){if(oDiv.currentStyle){return oDiv.currentStyle[name];}else{return getComputedStyle(oDiv,false)[name];}}window.onload=function(){var oDiv = document.getElementById('div1');//IE11 可行,FF不行,提示oDiv.currentStyle is undefined//alert(oDiv.currentStyle['width']);//在FF 、IE11 可行,在低版本的IE中不行//alert(getComputedStyle(oDiv,false).width);//为了兼容性alert(getStyle(oDiv,'width'));};</script></head><body><div id="div1"></div></body></html>
以上就是关于取非行间样式的方法。
参考资料
1、blue老师的《js视频教程》
这篇关于《JavaScript学习笔记六》:取非行间样式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!