1:设计元素的样式:el.style.color="red"||el.style["color"]="red"
获取元素的样式:el.style.color||el.style["color"](只能获取直接样式的
值)
获取内部样式或外部样式的值:
function getStyle(ele,style){
return ele.currentStyle?obj.currentStyle
[style]:window.getComputedStyle(ele)[style];
};
时间: 2024-12-24 10:38:53