CSSRuleList: item()-Methode
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
Die item()
-Methode der CSSRuleList
-Schnittstelle gibt das CSSRule
-Objekt am angegebenen index
zurück oder null
, wenn der angegebene index
nicht existiert.
Syntax
js
item(index)
Parameter
index
-
Ein Integer.
Rückgabewert
Ein CSSRule
.
Beispiele
Im folgenden Beispiel nehmen wir an, dass die Liste myRules
nur drei Elemente enthält.
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules.item(0)); // Logs the first CSSRule item from this list
// Accessing non-existing items using this method will return null instead of undefined
console.log(myRules.item(5)); // null
console.log(myRules[5]); // undefined
Spezifikationen
Specification |
---|
CSS Object Model (CSSOM) # dom-cssrulelist-item |
Browser-Kompatibilität
BCD tables only load in the browser