var ele = document.getElementById("eleid");
1:ele.style.元素名称
2:var style = window.getComputedStyle ? window.getComputedStyle(ele, null) : ele.currentStyle; style.元素名称;
window.getComputedStyle IE早期版本不兼容,第二个参数可以获取伪类
currentStyle IE写法
以上两个比较常用。下面链接比较全面
https://www.zhangxinxu.com/wordpress/2012/05/getcomputedstyle-js-getpropertyvalue-currentstyle/