window.open('',_blank');window.opener=null;top.window.close()和 window.location.href='
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.open('',_blank');window.opener=null;top.window.close()和 window.location.href='相关的知识,希望对你有一定的参考价值。
大侠求指点!
我现在做一个小程序要求验证用户是否登录,没登陆的话就跳到登录页面,下面有两个JS方法哪个好呢?
if(没登陆)
Response.Write("<script>window.open('../login.aspx','_blank');window.opener=null;window.close()
和
if(没登陆)
Response.Write("<script>window.location.href='../login.aspx'';</script>");哪个好?
个人认为window.location.href='../login.aspx''好,因为 window.open是弹窗,弹出一个页面,浏览器可能会阻止,window.location.href='../login.aspx''是直接跳转。。
可以这样理解吗?到底哪个好呢?
╭︿︿︿╮
/ $ $ /
( (oo) )
︶ ︶ ︶
以上是关于window.open('',_blank');window.opener=null;top.window.close()和 window.location.href='的主要内容,如果未能解决你的问题,请参考以下文章
如何使用window.open在JSP页面之间传递【多个】参数?
在window.open打开的窗口里再用window.open办法打开一窗口