javascript獲取當前部署項目路徑:javascript
主要用到Location 對象,包含有關當前 URL 的信息,是 Window 對象的一個部分,可經過 window.location 屬性來訪問。java
方法一 (window.document.location.href/window.document.location.pathname) ------------轉自網絡web
function getRootPath_web() { //獲取當前網址,如: http://localhost:8083/uimcardprj/share/meun.jsp var curWwwPath = window.document.location.href; //獲取主機地址以後的目錄,如: uimcardprj/share/meun.jsp var pathName = window.document.location.pathname; var pos = curWwwPath.indexOf(pathName); //獲取主機地址,如: http://localhost:8083 var localhostPaht = curWwwPath.substring(0, pos); //獲取帶"/"的項目名,如:/uimcardprj var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1); return (localhostPaht + projectName); }
方法二(window.location.pathname/window.location.protocol/window.location.host)網絡
function getRootPath_dc() { var pathName = window.location.pathname.substring(1); var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/')); if (webName == "") { return window.location.protocol + '//' + window.location.host; } else { return window.location.protocol + '//' + window.location.host + '/' + webName; } }
注:dom
一、document默示的是一個文檔對象,window默示的是一個窗口對象,一個窗口下能夠有多個文檔對象。
因此一個窗口下只有一個window.location.href,然則可能有多個document.URL、document.location.href------------轉自網絡jsp
二、window.location.href和document.location.href能夠被賦值,而後跳轉到其它頁面,document.URL只能讀不克不及寫------------轉自網絡ide
三、Location 對象詳細信息參考w3school http://www.w3school.com.cn/jsref/dom_obj_location.aspui
grails獲取當前項目路徑:this
System.getProperty("user.dir");// /Users/hongmei1/ideaWork/wechatShow
grails獲取當前項目部署路徑:idea
// 獲取項目部署所有路徑 http://localhost:8080/wechatShow/WEB-INF/classes/ String path = this.class.getClassLoader().getResource("").getPath(); //截取項目路徑 int end = path.length() - "WEB-INF/classes/".length(); //http://localhost:8080/wechatShow/ path = path.substring(0, end);