jquery 打开页面window.location和window.open的区别
3个回答
展开全部
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()刷新最顶端对象(用于多开窗口)
都是重定向
跳转后有后退功能
其实应该是 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()刷新最顶端对象(用于多开窗口)
都是重定向
展开全部
window.location是你对当前浏览器窗口的URL地址对象的参考
window.open是用来打开一个新窗口的函数
window.open是用来打开一个新窗口的函数
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
window.location一般是当前的页面跳转,window.open是新开tab页签打开,不会影响当前的页面。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询