簡介
需要檢索所有樣式屬性及其僅使用簡介
需要檢索所有樣式屬性及其僅使用簡介
需要檢索所有樣式屬性及其僅使用簡介
需要檢索所有樣式屬性及其僅使用簡介
需要檢索所有樣式屬性及其僅使用HTML 元素的ID 來套用值?這個問題深入探討如何做到這一點。
循環CSSStyleDeclaration 對象(getCompulatedStyle): 迭代CSSStyleDeclaration 物件的索引,使用getPropertyValue 取得每個屬性名稱的值。
<code class="javascript">function getStyleById(id) { return getAllStyles(document.getElementById(id)); } function getAllStyles(elem) { if (!elem) return []; // Element does not exist, empty list. var win = document.defaultView || window, style, styleNode = []; if (win.getComputedStyle) { /* Modern browsers */ style = win.getComputedStyle(elem, ''); for (var i=0; i<style.length; i++) { styleNode.push( style[i] + ':' + style.getPropertyValue(style[i]) ); // ^name ^ ^ value ^ } } else if (elem.currentStyle) { /* IE */ style = elem.currentStyle; for (var name in style) { styleNode.push( name + ':' + style[name] ); } } else { /* Ancient browser..*/ style = elem.style; for (var i=0; i<style.length; i++) { styleNode.push( style[i] + ':' + style[style[i]] ); } } return styleNode; }</code>
對 currentStyle 物件使用普通的 for in 循環,該物件僅存在於 Internet Explorer 中。
類似地循環內聯樣式:使用相同的循環方法來擷取內聯樣式屬性。
<code class="javascript">console.log(getStyleById('my-element'));</code>
以上是如何使用 JavaScript 透過 ID 取得應用於 HTML 元素的所有樣式屬性及其值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!