javascript httpかhttpsであるかを判定する

javascript httpかhttpsであるかを判定する

javascriptで、httpかhttpsであるかを判定するサンプルコードを記述してます。「location.protocol」で「http」が返ってくるか「https」が返ってくるかで判定します。

環境

  • OS windows11 pro 64bit
  • Apache 2.4.43
  • ブラウザ chrome 107.0.5304.107

httpかhttpsの判定

判定するには、通信プロトコルの取得ができる「location.protocol」で取得した結果を条件に使用します。

if (location.protocol == 'http:') {
	console.log('http');
} else if (location.protocol == 'https:') {
	console.log('https');
}

実行結果

三項演算子を使用すると、少しスッキリと記述することもできます。

(location.protocol == 'http:') ? console.log('http') : console.log('https');

サンプルコード

以下は、「取得」ボタンをクリックして現在通信しているプロトコルを判定した結果を表示するサンプルコードとなります。

※cssには「bootstrap material」を使用してます。関数はアロー関数で記述してます。

<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>mebeeサンプル</title>
  <!-- MDB -->
  <link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/4.2.0/mdb.min.css" rel="stylesheet" />
</head>

<body>
  <div class="container text-center w-25" style="margin-top:150px">

    <h2><span class="badge badge-info">結果</span></h2>    

    <button id="btn" type="button" class="btn btn-raised btn-info">
      実行
    </button>

  </div>

  <script>
    // クリックイベントを登録
    btn.onclick = () => {

      document.getElementsByClassName('badge')[0].textContent = 
      (location.protocol == 'http:') ? 'httpです' : 'httpsです';

    };
  </script>
</body>

</html>

結果が判定されていることが確認できます。