History.back();
前のページを完全に更新した機能が欲しいのですが。
それを行う方法(そしてIE、FF、Chromeで機能させる)。
History.back();
前のページを完全に更新した機能が欲しいのですが。
それを行う方法(そしてIE、FF、Chromeで機能させる)。
(window.locationによって)document.referrerにリダイレクトできます
すなわち
window.location.href = document.referrer;
リファラーを特定の場所に渡すためのInternetExplorerの修正:
if(IE){ //IE, bool var, has to be defined
var newlocation = document.createElement('a');
newlocation.href = URLtoCall;
document.body.appendChild(newlocation);
newlocation.click();
}
location replace()メソッドを使用することもできます。
window.location.replace(document.referrer)