JS獲取CSS屬性方法:
function getDefaultStyle(obj,attribute){ return obj.currentStyle?obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj,false)[attribute]; }
本文讲解了如何通过JS获取CSS属性值 ,更多相关内容请关注php中文网。
相关推荐:
Das obige ist der detaillierte Inhalt von如何通过JS获取CSS属性值. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!