window.location.reload()--解决JS页面跳转ie,firefox,opera不兼容问题

window.location.reload()。解决JS页面跳转ie,firefox,opera不兼容问题
 

一用我们的页面跳转都使用,window.location.reload()。
但在firefox,opera这样不行,替代使用window.location.href="";就可以了

另外用 <meta http-equiv="refresh" content="0;url=thispage.aspx">也可以

<html>
<head>
   <meta http-equiv="Content-type" content="text/html; charset=utf-8">
   <meta http-equiv="refresh" content="0;url=all_topic.action">
</head>
<body onload="window.location.href='thispage.aspx;">
</body>
</html>

posted on 2010-06-28 16:16  Master zhu  阅读(1298)  评论(0编辑  收藏  举报

导航