使用 JavaScript 更改当前网页位置的首选方法是什么?我已经看到使用了 window.navigate 和 document.location 。行为上有什么不同吗?浏览器实现有区别吗?
window.location.href = ‘URL’;
是改变当前窗口位置的标准实现。