我将一些变量从我的 gwt 代码传递到 jsp 文件。是这样的
<html>
<head>
<script type="text/javascript">
alert("Inside the jsp file");
var criticalPath = window.top.criticalPath;
</script>
</head>
<body>
<script type="text/javascript" src="./js/flow.js"></script>
</body>
</html>
我想要的是将criticalPath 变量传递给flow.js 文件。我知道 flow.js 是否是一种我可以传递变量的方法,但我不想那样做。有什么方法可以避免该方法并将变量传递给 flow.js 或者我可以在 flow.js 中调用 window.top.criticalPath 吗?