1
奇怪的行爲,我在我的網頁此基礎標籤:location.replace及基礎標籤:在IE
<base href="http://localhost:8080/application/module/jsp/Vues/">
當我在Chrome測試location.replace,其行爲與預期相同,使用基本URL :
location.replace(test)
=> http://localhost:8080/application/module/jsp/Vues/test
但IE似乎忽略基本URL,並改用當前的位置:
location.replace(test)
=> http://localhost:8080/application/module/jsp/test
IE瀏覽器忽略基本標記的任何想法?如何使這兩個瀏覽器具有相同的行爲?