zoukankan      html  css  js  c++  java
  • js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址

        //js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址     
        function getRootPath(){
            var strFullPath=window.document.location.href;
            var strPath=window.document.location.pathname;
            var pos=strFullPath.indexOf(strPath);
            var prePath=strFullPath.substring(0,pos);
            var postPath=strPath.substring(0,strPath.substr(1).indexOf('/')+1);
            return(prePath+postPath);
           }
        */
        
        //js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址   
        function getRootPath() {
           var pathName = window.location.pathname.substring(1);
           var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/'));
           //return window.location.protocol + '//' + window.location.host + '/'+ webName + '/';
           return window.location.protocol + '//' + window.location.host + '/'+ webName;
           } 

    http://blog.csdn.net/vbangle/article/details/5906632 

  • 相关阅读:
    图2(矩环问题)
    图1(八连块)
    恶补一下DP+背包专题(刷刷水题)L2
    food(洛谷P4040 [AHOI2014/JSOI2014]宅男计划)
    滑动窗口
    Lawnmower(洛谷 CF115B)
    Price(洛谷P4109 [HEOI2015]定价)
    逆序对
    矩阵
    1.25日考试
  • 原文地址:https://www.cnblogs.com/chen110xi/p/2277511.html
Copyright © 2011-2022 走看看