其他分享
首页 > 其他分享> > 兼容浏览器获取元素属性的方法

兼容浏览器获取元素属性的方法

作者:互联网

function getStyle(obj,name){
				//正常浏览器
				//return getComputedStyle(obj,null)[name];
				
				//IE8
				//return obj.currentStyle[name];
				// 需要判断浏览器是否有以上两种方法中的哪一种
				if(window.getComputedStyle){
					//这是一个对象,对象没找到就会报错
					//变量没找到就会报undefined
					return getComputedStyle(obj,null)[name];
				}
				else{
					IE8
					return obj.currentStyle[name];
				}
				
			}

标签:return,name,getComputedStyle,兼容,obj,浏览器,null,属性
来源: https://blog.csdn.net/qq_41648092/article/details/89055502