springMVC框架在js中使用window.location.href請求url時IE不相容問題解決
是使用springMVC框架時,有時候需要在js中使用window.location.href來請求url,比如下面的路徑:
window.location.href = ‘forecast/download.do’
在谷歌瀏覽器下,實際請求的路徑是:專案名/forecast/download.do
而在IE下訪問時在中間多了好幾層資料夾:
造成這種情況的原因是各種瀏覽器在使用window.localtion.href請求相對路徑時處理方法不同
IE是從當前當前路徑開始跳轉
谷歌是從根目錄開始跳轉
所以最好的方法是使用絕對路徑,讓他們都從根目錄開始跳轉:
<script type="text/javascript"> function getPath(){ var path = "<%=path%>"; return path; } </script>
<script type="text/javascript">
var path = getPath()+"/";
var url = path+'forecast/download'
window.location.href = encodeURI(url);
</script>
相關推薦
springMVC框架在js中使用window.location.href請求url時IE不相容問題解決
是使用springMVC框架時,有時候需要在js中使用window.location.href來請求url,比如下面的路徑:window.location.href = ‘forecast/download.do’在谷歌瀏覽器下,實際請求的路徑是:專案名/forecast/d
關於js中"window.location.href"、"location.href"重定向
關於js中"window.location.href"、"location.href"、"parent.location.href"、"top.location.href"的用法 "window.location.href"、"location.href"是本頁面跳轉
js中window.location.search的用法和作用。
bst 地址 用法 屬性獲取 net bstr src log 協議 用該屬性獲取頁面 URL 地址: window.location 對象所包含的屬性 屬性描述 hash 從井號 (#) 開始的 URL(錨) host 主機名和當前 URL 的端口號 h
微信BUG之微信內置的瀏覽器中window.location.href 不跳轉
href details clas pan 模擬 dom sdn times word 最近做微信開發遇到這個問題,查了一些文檔,總結一下 1.url後面加參數 indow.location.href = url +‘?timestamp=‘+ new Date().get
js中top.location.href、parent.location.href用法
在很多朋友不清楚在js中window.location.href、location.href、parent.location.href、top.location.href他們的用法,下面我來分別介紹。 window.location.href、location.hre
1.JS 格式化日期 2.JS中使用new Date(str)建立時間物件不相容firefox和ie的解決方式
將 2018-11-08 17:51:51 轉化為 2018年11月08日 或者其他格式.. //時間格式化 function time_format (time, format){ con
JS中設置window.location.href跳轉無效
設置 gin false urn window body 跳轉 log color window.location.href="login.jsp"; window.event.returnValue=false; JS中設置window.location.
遇到問題-----JS中設定window.location.href跳轉無效
問題情況JS中設定window.location.href跳轉無效程式碼如下: <script type="text/javascript"> function checkUser()
javascript中window.open()與window.location.href
javascrip 定位 page 說過 函數 cnblogs 忘記 logs glin 1.window.location是window對象的屬性,而window.open是window對象的方法 window.location是你對當前瀏覽器窗口的URL地址
js如何獲取window.location.href跳轉後查詢字符串的值?
fun click ear func ren htm 獲取 earch cli $("#worked_count").parent().attr("onClick","window.location.href=‘view/warn/task_list.html?task_s
獲取window.location.href中傳的值,並且轉換成json數據使用
() win urn spa cati var 使用 並且 應該 做個記錄保存一下,以免以後再次用到忘記了。 function locVal(){ var url=window.location.href; if (url.indexOf(‘?‘)==-1
JSP中使用window.location.href()跳轉和傳遞引數。
JSP中使用window.location.href()跳轉和傳遞引數 在按鈕上新增onclick時間,並傳遞引數給js函式,引數可以為input中輸入的值,也可以為jsp中獲取的值。 onclick="doDelete(${student.id}) 然後呼叫js中的函
window location href多次跳轉導致a標籤中的onclick失效
我們通過window.location.href來多次跳轉一個介面的時候可能會出現a標籤的失效,可以通過 <a href="javascript:history.go(-1);" >返回
關於 http和window.location.href的分析 和 URL中“#” “?” &“”號的作用
window.location.replace(url) : 通過載入 URL 指定的文件來替換當前文件 ,這個方法是替換當前視窗頁面,前後兩個頁面共用一個視窗,所以是沒有後退返回上一頁的 閱讀目錄 1. #2. ?3. & 回到頂部 1. # 10年9月,t
js window.location.href之後,session丟失的問題
今天一個小夥伴問我問題,就是java後臺把資料放入session,jsp裡js重定向頁面之後就取不到session裡面的資料了,而且他本地可以,伺服器上卻取不到session下面是他寫的重定向程式碼:大概意思就是:window.location.href 之後,重新建立了一個
js中Window 對象及其的方法
tor size 種類 ear 無法 item back 瀏覽器中 取消 window.location 對象 window.location 對象用於獲得當前頁面的地址 (URL),並把瀏覽器重定向到新的頁面。window.location 對象在編寫時可不使用 wi
window.location.href 跳轉無歷史記錄
pan win 為什麽 cat spa 替換 當前頁 nload stat 需求:從頁面a單點登錄跳至頁面b,在頁面b裏做判斷符合條件後location.href至c頁面 問題:在頁面c中點擊返回按鈕頁面回到了a,正常情況下應該回到頁面b 原因:在當前頁面的 onlo
js設定了location.href不跳轉問題
今天碰到一個問題,用JS設定了location.href就是不跳轉的問題。程式碼如下: $(‘#gofriendtab’).on(‘click’, function() { &nb
關於springMVC和傳統servlet框架從jsp頁面向後臺請求url問題
經過實驗 發現 servlet和springmvc向後臺傳送請求都是根據request.getServletPath()來獲取請求的 如果jsp中沒有<base href="<%=basePath%>">則向後臺的請求會自動解析到專案根目錄下 加上以後
window.location.replace和window.location.href區別
比如有3個頁面:跳轉關係為 a > b > c; 1:b > c 是通過window.location.replace("..xx/c.xx") 此時b頁面的url會被c頁面代替,並且點選後退按鈕時會回退到a頁面(最開始的頁面); 2:b > c