首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

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

2013-10-18 
jquery 打开页面window.location和window.open的区别其实应该是 window.location.hrefwindow.location.rep

jquery 打开页面window.location和window.open的区别
其实应该是 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';?

?

?

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

都是重定向

热点排行