当 CSS 文件链接到网页时,JavaScript 开发人员可能会遇到需要读取元素的特定 CSS 属性的情况。
在这种情况下,网页包含
选项 1:创建和修改元素
<code class="javascript">function getStyleProp(elem, prop){ if(window.getComputedStyle) return window.getComputedStyle(elem, null).getPropertyValue(prop); else if(elem.currentStyle) return elem.currentStyle[prop]; //IE } window.onload = function(){ var d = document.createElement("div"); d.className = "layout"; alert(getStyleProp(d, "color")); }</code>
在每个样式表上使用 getPropertyValue() 方法来检索与所需选择器关联的特定属性值。
此除非特别需要收集特定选择器定义的所有 CSS 属性,否则不建议使用该选项。<code class="javascript">function getNonInlineStyle(elem, prop){ var style = elem.cssText; elem.cssText = ""; var inheritedPropValue = getStyle(elem, prop); elem.cssText = style; return inheritedPropValue; }</code>
以上是如何使用 JavaScript 检索网页元素的 CSS 属性?的详细内容。更多信息请关注PHP中文网其他相关文章!