节点计算后样式是一个属性与属性值的值对对象;
IE: node.currentStyle;
非IE: window.getComputedStyle(node,null);
兼容方式:
function getCurrentStyle(node){
var style=[];
node.currentStyle?style=node.currentStyle:window.getComputedStyle(node,null);
return style;
}
2023-08-06 13:09:28
节点计算后样式是一个属性与属性值的值对对象;
IE: node.currentStyle;
非IE: window.getComputedStyle(node,null);
兼容方式:
function getCurrentStyle(node){
var style=[];
node.currentStyle?style=node.currentStyle:window.getComputedStyle(node,null);
return style;
}