使用javascript,重定向到其他网站后如何自动对焦?

时间:2018-06-17 09:53:30

标签: javascript redirect dom url-redirection

例如,我想首先重定向到stackoverflow问题页面,并专注于标题输入框。 为了实现这一点,我做了这个功能。

var redirectAndFocus = function (){
    window.location.replace("https://stackoverflow.com/questions/ask");
    document.getElementById('title').focus();
}();

但是,即使页面已被重定向,也没有像聚焦事件那样发生。 这有什么办法吗? 如果没有,为什么不会发生?

1 个答案:

答案 0 :(得分:-1)

你可以这样做。

window.location.replace("https://stackoverflow.com/questions/ask#title") ;