我有一个旧的应用程序,无论如何都无法修改,包括直接编辑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函数。