重定向到另一个页面时如何保持javascript全局变量

时间:2013-01-18 11:37:22

标签: javascript

重定向到另一个页面(同一个域中的 )后,是否可以保留我的javascript全局变量?

我知道我可以使用html5 localStorage / sessionStorage或将其存储在服务器会话状态(并稍后提取)。但是当使用复杂或更多的全局变量时,我想知道是否有另一种快速使用的方法......

例如:

<html>
   <head>
      <title> first page </title>

      <script type="text/javascript">
          var myGlobal="this is my global variable";
            ...
      </script>
   </head>
   <body>
        ...
       <a href="secondPage.htm" ..> to the second page</a>
   </body>
</html>

并在secondPage.htm中:

<html>
   <head>
      <title> second page </title>

      <script type="text/javascript">
          alert(myGlobal);    //I want it to be :  "this is my global variable";
            ...
      </script>
   </head>
   <body>
       ...
   </body>
</html>

0 个答案:

没有答案