CSSStyleDeclaration.getPropertyPriority() - Web APIs 编辑
The CSSStyleDeclaration.getPropertyPriority() method interface returns a DOMString
that provides all explicitly set priorities on the CSS property.
Syntax
var priority = style.getPropertyPriority(property);
Parameters
property
is aDOMString
representing the property name to be checked.
Return value
priority
is aDOMString
that represents the priority (e.g."important"
) if one exists. If none exists, returns the empty string.
Example
The following JavaScript code checks whether margin
is marked as important in a CSS selector rule:
var declaration = document.styleSheets[0].cssRules[0].style;
var isImportant = declaration.getPropertyPriority('margin') === 'important';
Specifications
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论