123456789101112 |
- function getBaseRootPath() {
- var strFullPath = window.document.location.href;
- var strPath = window.document.location.pathname;
- var pos = strFullPath.indexOf(strPath);
- var prePath = strFullPath.substring(0, pos);
- return prePath
- }
- function getPathName() {
- var pathName = window.document.location.pathname;
- return pathName
- }
|