例如,我想首先重定向到stackoverflow问题页面,并专注于标题输入框。 为了实现这一点,我做了这个功能。
var redirectAndFocus = function (){
window.location.replace("https://stackoverflow.com/questions/ask");
document.getElementById('title').focus();
}();
但是,即使页面已被重定向,也没有像聚焦事件那样发生。 这有什么办法吗? 如果没有,为什么不会发生?
答案 0 :(得分:-1)
你可以这样做。
window.location.replace("https://stackoverflow.com/questions/ask#title") ;