js获取当前URL、域名、端口号

2021-03-29 13:25

阅读:467

标签:class   protoc   tail   window   ref   style   let   href   std   

  1. href                  完整的 URL                http://172.18.8.64:3000/#/postDetails?postId=24273
  2. protocol              协议                         http:
  3. hostname           主机名        172.18.8.64  
  4. port                     端口号                        3000
  5. host                    主机名+端口号           172.18.8.64:3000

正常使用

let protocol = window.location.protocol,
    host = window.location.host;
let url = `${protocol}//${host}`;

 

js获取当前URL、域名、端口号

标签:class   protoc   tail   window   ref   style   let   href   std   

原文地址:https://www.cnblogs.com/yixiancheng/p/12607819.html

上一篇:js深拷贝

下一篇:ADO.NET


评论


亲,登录后才可以留言!