欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

JavaScript 判断当前协议是http还是https 有大用

JavaScript 判断当前协议是http还是https

2017年04月27日 10:38:51 爱睡懒觉的朱 阅读数:11828                
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_30252319/article/details/70843969

JavaScript 的document对象中有一个location的子对象,其包括是属性如下:

 

  1. document.location.host   //表示当前域名 + 端口号

  2. document.location.hostname  //表示域名

  3. document.location.href   //表示完整的URL

  4. document.location.port   //表示端口号

  5. document.location.protocol   //表示当前的网络协议

   所以通过上面第五条就能判断当前的网络协议了,具体判断如下:

 

 

  1. var protocolStr = document.location.protocol;
  2. if(protocolStr == "http:")
  3. {
  4. console.log("protocol = " + protocolStr);
  5. }
  6. else if(protocolStr == "https:")
  7. {
  8. console.log("protocol = " + protocolStr);
  9. }
  10. else                            
  11. {
  12. console.log("other protocol");
  13. }
               

 

 

 

 

 


普通分类: