标签:
window.location.href=window.location.href;//刷新当前页面
asp.net 或 asp 利用此功能刷新页面
Response.Write("<script language=javascript>window.location.href=window.location.href;</script>")
认识 location / Location 对象 参考
location.href 扩展
1.1 刷新父页面
opener.location.href=opener.location.href; // parent.frames(0).location.href=parent.frames(0).location.href; //
1.2 跳转到指定页面
window.location.href=‘yourpage.aspx‘;
window.location.reload(true);
window.navigate("本页面url");
标签:
原文地址:http://www.cnblogs.com/zhuji/p/5820534.html