zoukankan      html  css  js  c++  java
  • JS获取当前项目名

    js 获取当前项目名

    复制代码 代码如下:

      //获取当前网址,如:
    var curWwwPath=window.document.location.href;

    //获取主机地址之后的目录如:/Tmall/index.jsp
    var pathName=window.document.location.pathname;
    var pos=curWwwPath.indexOf(pathName);

    //获取主机地址,如://localhost:8080
    var localhostPaht=curWwwPath.substring(0,pos);

    //获取带"/"的项目名,如:/Tmall
    var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1); 

    window.location
    属性 描述 
    hash 设置或获取 href 属性中在井号“#”后面的分段。 
    host 设置或获取 location 或 URL 的 hostname 和 port 号码。 
    hostname 设置或获取 location 或 URL 的主机名称部分。 
    href 设置或获取整个 URL 为字符串。 
    pathname 设置或获取对象指定的文件名或路径。 
    port 设置或获取与 URL 关联的端口号码。 
    protocol 设置或获取 URL 的协议部分。 
    search 设置或获取 href 属性中跟在问号后面的部分。

  • 相关阅读:
    Microsoft office 2013安装图解
    6.2单一继承
    #include <QLabel>
    #include <QDebug>
    9.1运算符重载
    简单QT界面信号图形化输入输出
    类指针引用
    NULL和nullptr的区别
    网易云课堂_C语言程序设计进阶_第8周:图形交互程序
    5.3友元函数
  • 原文地址:https://www.cnblogs.com/l412382979/p/8574813.html
Copyright © 2011-2022 走看看