HTMLDOMドメインプロパティ
HTML DOMドメインプロパティは、ドキュメントが現在実行されているサーバーのドメイン名を取得するために使用されます。ドメイン名を文字列の形式で返します。ドメインが識別されない場合、値はnullになる可能性があります。
構文
以下は、ドメインプロパティの構文です-
document.domain
例
HTMLDOMドメインプロパティの例を見てみましょう-
<!DOCTYPE html> <html> <style> <h1>domain property example</h1> <p>Get the domain name property value by clicking the below button </p> <button onclick="getDomain()">Get domain</button> <p id="Sample"></p> <script> function getDomain() { var doc = document.domain; document.getElementById("Sample").innerHTML ="The domain name of the server running this document is "+doc; } </script> </body> </html>
出力
これにより、次の出力が生成されます-
「ドメインを取得」ボタンをクリックすると-
最初に、ユーザーがクリックしたときにgetDomain()メソッドを実行する「ドメインの取得」ボタンを作成しました-
<button onclick="getDomain()">Get domain</button>
getDomain()関数は、ドキュメントのドメインプロパティを取得し、その値を変数docに割り当てます。次に、この変数docは、ID「Sample」が関連付けられている段落に表示され、innerHTMLプロパティを使用して目的のテキストを表示します-
function getDomain() { var doc = document.domain; document.getElementById("Sample").innerHTML ="The domain name of the server running this document is "+doc; }です。
-
HTMLDOMdoctypeプロパティ
HTML DOM doctypeプロパティは、現在のHTMLドキュメントに関連付けられているDTD(ドキュメントタイプ宣言)を返します。読み取り専用のプロパティです。 doctype名をDocumentTypeオブジェクトとして返します。指定されたドキュメントにDTDが指定されていない場合は、nullを返す可能性があります。 構文 以下は、doctypeプロパティの構文です- document.doctype 例 doctypeプロパティの例を見てみましょう- <!DOCTYPE html> <html> <body> <h1>doctype
-
HTMLDOMdesignModeプロパティ
HTML DOM designModeプロパティを使用すると、ドキュメント全体を編集可能かどうかを指定できます。これにより、HTMLドキュメントを編集できるため、HTMLドキュメントがWYSIWYG(What You See Is What You Get)エディターとして機能します。このプロパティはデフォルトで「オフ」に設定されており、「オン」に設定することでドキュメントを編集できます。 構文 以下は、-の構文です。 designModeプロパティの設定- document.designMode = "on|off" ここで、「オフ」はデフォルト値であり、「オン」に