style
property is used to get as well as set the
inline
style of an element. When getting, it returns a
CSSStyleDeclaration
object that contains a list of all styles properties for that element with values assigned for the attributes that are defined in the element's inline
style
属性
.
见
CSS Properties Reference
for a list of the CSS properties accessible via
style
。
style
property has the same (and highest) priority in the CSS cascade as an inline style declaration set via the
style
属性。
Styles should not be set by assigning a string directly to the
style
property (as in
elt.style = "color: blue;"
), since it is considered read-only, as the style attribute returns a
CSSStyleDeclaration
object which is also read-only. Instead, styles can be set by assigning values to the properties of
style
. For adding specific styles to an element without altering other style values, it is preferred to use the individual properties of
style
(as in
elt.style.color = '...'
) as using
elt.style.cssText = '...'
or
elt.setAttribute('style', '...')
sets the complete inline style for the element by overriding the existing inline styles. Note that the property names are in camel-case and not kebab-case while setting the style using
elt.style.<property>
(即,
elt.style.fontSize
, not
elt.style.font-size
).
A style declaration is reset by setting it to
null
or an empty string, e.g.,
elt.style.color = null
. Internet Explorer requires setting it to an empty string, and does not do anything when setting it to
null
.
// Set multiple styles in a single statement
elt.style.cssText = "color: blue; border: 1px solid black";
// Or
elt.setAttribute("style", "color:red; border: 1px solid blue;");
// Set specific style while leaving other inline style values untouched
elt.style.color = "blue";
style
property is not useful for completely learning about the styles applied on the element, since it represents only the CSS declarations set in the element's inline
style
attribute, not those that come from style rules elsewhere, such as style rules in the
<head>
section, or external style sheets. To get the values of all CSS properties for an element you should use
Window.getComputedStyle()
代替。
The following code snippet demonstrates the difference between the values obtained using the element's
style
property and that obtained using the
getComputedStyle()
方法:
<!DOCTYPE HTML>
<html>
<body style="font-weight:bold;">
<div style="color:red" id="myElement">..</div>
</body>
</html>
var element = document.getElementById("myElement");
var out = "";
var elementStyle = element.style;
var computedStyle = window.getComputedStyle(element, null);
for (prop in elementStyle) {
if (elementStyle.hasOwnProperty(prop)) {
out += " " + prop + " = '" + elementStyle[prop] + "' > '" + computedStyle[prop] + "'\n";
}
}
console.log(out)
The output would be something like:
... fontWeight = '' > 'bold' color = 'red' > 'rgb(255, 0, 0)' ...
Note the presence of the value
bold
for
font-weight
in the computed style and the absence of it in the element's
style
property
| 规范 | 状态 | 注释 |
|---|---|---|
|
CSS Object Model (CSSOM)
The definition of 'the
ElementCSSInlineStyle.style
property' in that specification.
|
工作草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
style
|
Chrome 45 | Edge 12 | Firefox 1 | IE 8 | Opera 8 | Safari 11 | WebView Android 45 | Chrome Android 45 | Firefox Android 4 | Opera Android 10.1 | Safari iOS 11 | Samsung Internet Android 5.0 |
完整支持
ElementCSSInlineStyle
style
AnimationEvent
CSS
CSSConditionRule
CSSGroupingRule
CSSKeyframeRule
CSSKeyframesRule
CSSMediaRule
CSSNamespaceRule
CSSPageRule
CSSRule
CSSRuleList
CSSStyleDeclaration
CSSStyleRule
CSSStyleSheet
CSSSupportsRule
CaretPosition
LinkStyle
MediaQueryList
MediaQueryListListener
Screen
StyleSheet
StyleSheetList
TransitionEvent