CSSImportRule:layerName 属性

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2022.

CSSImportRule 接口的 layerName 只读属性返回由 @import at 规则创建的层叠层的名称。

如果创建的层是匿名的,则字符串为空(""),如果没有创建层,则为 null 对象。

一个字符串,可以为空,或者是 null 对象。

示例

该文档的单个样式表包含三个 @import 规则。第一个声明将样式表导入到一个具名层。第二个声明将样式表导入到一个匿名层。第三个声明在没有层声明的情况下导入一个样式表。

layerName 属性返回与导入的样式表关联的层的名称。

css
@import url("style1.css") layer(layer-1);
@import url("style2.css") layer;
@import url("style3.css");
js
const myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].layerName); // 返回 `"layer-1"`
console.log(myRules[1].layerName); // 返回 `""`(匿名层)
console.log(myRules[2].layerName); // 返回 `null`

规范

Specification
CSS Object Model (CSSOM)
# dom-cssimportrule-layername

浏览器兼容性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
layerName

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

参见