标签: javascript jquery ruby-on-rails
我现在正在使用
redirect_to root_path
我想在jQuery中做同样的事情。
即。 window.location.replace("???");
window.location.replace("???");
怎么做?
答案 0 :(得分:14)
window.location = '/'
使用window.location.replace('/')的缺点是用户无法按“返回”并返回上一页。
window.location.replace('/')