Please note, this is a STATIC archive of website developer.mozilla.org from November 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

StyleSheet.ownerNode

概要

ownerNode は、このスタイルシートを document と関連付けているノードを返します。

構文

objRef = stylesheet.ownerNode 

<html>
 <head>
  <link rel="StyleSheet" href="example.css" type="text/css" />
  <script>
   function stilo() {
    alert(document.styleSheets[0].ownerNode);
   }
  </script> 
 </head>
 <body>
   <button onclick="stilo()">ss</button>
 </body>
</html>
// displays "object HTMLLinkElement"

補記

HTML の場合、ownerNode は、相当する <link> 要素または <style> 要素になるでしょう。XML の場合、リンク処理命令になるでしょう。他のスタイルシートに含まれるスタイルシートの場合、この属性の値は NULL になります。

仕様書

DOM Level 2 Styles - STYLESHEET

ドキュメントのタグと貢献者

 このページの貢献者: Marsf
 最終更新者: Marsf,