location.href和window.open的几种用法和区别

  1. self.location.href;//当前页面打开URL页面
  2. window.location.href;//当前页面打开URL页面
  3. this.location.href;//当前页面打开URL页面
  4. location.href;// 当前页面打开URL页面
  5. parent.location.href;//在父页面打开新页面
  6. top.location.href;//在顶层页面打开新页面

转载于 https://blog.csdn.net/hyunbar/article/details/82758953

你可能感兴趣的:(JS,前端,javascript,html)