zoukankan      html  css  js  c++  java
  • js获取当前页面相关信息

    1. 获取整个url:     console.log(window.location.href)       http://localhost:8082/Index.html?name=tom

    2. 获取域名加端口号:     console.log(window.location.host);      localhost:8082

    3. 获取域名:       console.log(document.domain);       localhost

    4. 获取端口号:      console.log(window.location.port);      8082

    5. 获取协议:       console.log(window.location.protocol);    http:

    6. 获取页面相对路径    console.log(window.location.pathname);      /Index.html

    7. 获取url中?后边的部分  console.log(window.location.search);      name=tom

  • 相关阅读:
    day15内置函数
    day14生成器进阶
    day13迭代器、生成器
    day12装饰器进阶
    day11装饰器
    day10函数进阶
    day9函数
    day8文件操作
    正则表达式
    初识递归
  • 原文地址:https://www.cnblogs.com/mufengforward/p/9198486.html
Copyright © 2011-2022 走看看