1. 程式人生 > >ajax請求路徑的動態獲得

ajax請求路徑的動態獲得

在寫ajax時,由於測試時路徑一般都寫“localhost:8080”,導致釋出的伺服器上,客戶用不了。所以應使用 js 動態獲得 hostname

程式碼:

		var url = location.host;	//localhost:18080
		$.ajax({
			url:"http://"+url+"/OAUI/MenuServlet?op=tree",

使用上述方法動態獲得 hostname