知方号

知方号

jquery打开页面window.location和window.open的区别

jquery打开页面window.location和window.open的区别?

window.location = "http://www.xxxxxxxx.net" 跳转后有后退功能

其实应该是 window.location.href

window.location.replace("http://www.xxxxxxxx.net") 跳转后没有后退功能

window.open("http://www.xxxxxxxx.net") 要新的窗口打开链接

这个一般用于简单的弹出页面,现在基本上都被屏蔽掉了window.location.reload();window.location = "/Admin/UserList";window.open("/Admin/UserList");

window.location.href = /Admin/UserList;

window.location.reload()刷新当前页面.

parent.location.reload()刷新父亲对象(用于框架)

opener.location.reload()刷新父窗口对象(用于单开窗口)

top.location.reload()刷新最顶端对象(用于多开窗口)

都是重定向

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至lizi9903@foxmail.com举报,一经查实,本站将立刻删除。