JavaScriptのロケーションプロトコルプロパティ。
JavaScriptのロケーションプロトコルプロパティは、URLを含む現在のURLプロトコルを設定または返すために使用されます。
以下は、JavaScriptのロケーションプロトコルプロパティのコードです-
例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-weight: 500; font-size: 18px; color: blueviolet; } </style> </head> <body> <h1>Location protocol Property in JavaScript</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to get the location protocol of the current url</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); BtnEle.addEventListener("click", () => { resEle.innerHTML = "Current url protocol = " + location.protocol; }); </script> </body> </html>
出力
[ここをクリック]ボタンをクリックすると-
-
JavaScriptソースプロパティ
JavaScriptのsourceプロパティは、特定のパターンが一致する正規表現テキストを返します。 以下は、ソースプロパティのコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum
-
HTMLDOMロケーションプロトコルプロパティ
Locationプロトコルプロパティは、URLに使用されるプロトコルに対応する文字列を返す/設定します。プロトコルは「file:」、「http:」、「https:」などに設定できます。 構文 以下は構文です- プロトコルの戻り値 プロパティ location.protocol プロトコルの値 プロパティセット location.protocol = protocolString 例 ロケーションプロトコルの例を見てみましょう プロパティ- <!DOCTYPE html> <html> <head> <title>Location pr