2017年2月10日 星期五

(js)取得css屬性(包含style)

css = getComputedStyle(dom, null) || dom.currentStyle;


// 取得預設 css 值,即使已經有設定樣式
var defaultCss = getDefaultComputedStyle(dom, null);