我可以在一个页面上加载JavaScript函数然后重定向到另一个页面吗?

时间:2017-09-18 17:58:43

标签: javascript jquery html asp.net

我有一个旧的应用程序,无论如何都无法修改,包括直接编辑HTML。我必须创建一个重定向html页面供人们加载,以便始终让每个人都到达正确的位置。

我可以在第一页上加载JavaScript并保持加载吗?

    <html>
       <head>
    <script type="text/javascript">
    function getMyAppProductID()
    {
       //Do the Java action to find the Product ID.
    }
    </ script>
          <meta http-equiv="X-UA-Compatible" content="IE=8" />
          <META http-equiv="refresh"         content="0;URL=http://MyAppURL.internalUrl.local/StartupScript.jsp">
          <title>Load...</title>
       </head>
       <body>
          <p>Loading My App</p>
       </body>
   </html>

然后当我查看我的应用程序时,我希望能够调用我写的函数。

IE。我有一个浮动按钮,用于执行getMyAppProductID函数。

0 个答案:

没有答案