## 获取css设置的元素样式的方法
chrome FF
vardiv=document.getElementById("id")
window.getComputedStyle(div).fontSize
IE
vardiv= document.getElementById("id");
div.currentStyle['font-size'];
## 获取css设置的元素样式的方法
chrome FF
vardiv=document.getElementById("id")
window.getComputedStyle(div).fontSize
IE
vardiv= document.getElementById("id");
div.currentStyle['font-size'];
本文标题:js
本文链接:https://www.haomeiwen.com/subject/aomeixtx.html
网友评论