您的位置:首页 > Web前端 > JavaScript

javascript中window.open()与window.location.href的区别

2017-05-20 17:21 477 查看
window.open("index.aspx",'top'); 只是表示打开这个页面,并不是打开并刷新index.aspx

window.location.href="index.aspx"; 表示重新定向到新页面,同时刷新打开的这个页面;

eg:

<tr><td style="width:96%;">进行中项目</td><td><img alt="" src="Images/2emorewe.gif" style="text-align:right;cursor:hand;"

onclick="JavaScript:window.open('ProjectList.aspx?flag=0','_top');"/></td></tr>

<tr><td style="width:96%;">进行中项目</td><td><img alt="" src="Images/2emorewe.gif" style="text-align:right;cursor:hand;" onclick="javascript:window.location.href='ProjectList.aspx?flag=0';"/></td></tr>

这两个的效果不同

参考:http://blog.csdn.net/lingling_jy/article/details/8191107
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: