Should I use window.navigate or [removed] in JavaScript?

前端 未结 11 1674
小鲜肉
小鲜肉 2020-11-27 12:12

What\'s the preferred method to use to change the location of the current web page using JavaScript? I\'ve seen both window.navigate and document.location used. Are there an

11条回答
  •  时光取名叫无心
    2020-11-27 12:57

    window.navigate is NOT supported in some browsers, so that one should be avoided. Any of the other methods using the location property are the most reliable and consistent approach

提交回复
热议问题