--- title: Document.origin slug: Web/API/Document/origin tags: - API - DOM - Document - Experimental - Interface - Property - Read-only translation_of: Web/API/Document/origin ---
代わりに self.origin
を使用してください。
Document.origin
は読み取り専用プロパティで、文書のオリジンを返します。ほとんどの場合、このプロパティは document.defaultView.location.origin
と等価です。
var origin = document.origin;
var origin = document.origin; // このページでは、 'https://developer.mozilla.org' を返します var origin = document.origin; // "about:blank" では 'null' を返します var origin = document.origin; // "data:text/html,<b>foo</b>" では、 'null' を返します。