businessutil.js 351 B

123456789101112
  1. function getBaseRootPath() {
  2. var strFullPath = window.document.location.href;
  3. var strPath = window.document.location.pathname;
  4. var pos = strFullPath.indexOf(strPath);
  5. var prePath = strFullPath.substring(0, pos);
  6. return prePath
  7. }
  8. function getPathName() {
  9. var pathName = window.document.location.pathname;
  10. return pathName
  11. }