页面一加载就跳转

来源:互联网 发布:照片软件大全 编辑:程序博客网 时间:2024/04/27 17:04
<script type="text/javascript">
function go(){
window.location.href("adminAction_getAllPublicInfos");
}
</script>
<html>
  <head>
  </head>
  <body onload="go()">
  <!-- 直接转发到一个主页上面去 -->
  </body>
</html>
0 0