CSSNamespaceRule.namespaceURI
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
namespaceURI
は CSSNamespaceRule
の読み取り専用プロパティで、この名前空間の URI のテキストを文字列で返します。
値
文字列で、 URI を持ちます。
例
このスタイルシートは、唯一のルールとして名前空間を含んでいます。したがって、最初に返される CSSRule
は CSSNamespaceRule
となります。 namespaceURI
プロパティの値は http://www.w3.org/1999/xhtml
となります。
css
@namespace url(http://www.w3.org/1999/xhtml);
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].namespaceURI); //http://www.w3.org/1999/xhtml
仕様書
Specification |
---|
CSS Object Model (CSSOM) # dom-cssnamespacerule-namespaceuri |
ブラウザーの互換性
BCD tables only load in the browser