1

我正在从 iframe调用一个代理,该代理应该将用户重定向到整个页面上的给定页面。

这是一个 Lotus 脚本代理,它做他的事情,然后使用一个通用的重定向:

Print "[http://www.server.com/db.nsf/simpleForm?OpenForm]"

我怎么能提到目标(在我的例子中是_top)?

谢谢,

4

1 回答 1

1

由于没有给出更好的回应,我分享了我的 Javascript 解决方案(欢迎评论):

Print  |<html>
<head>
<script language="JavaScript" type="text/javascript">
<!-- 
window.top.location.href = "/myDB.nsf/MyFullRedirectedPage?OpenForm&L=|+lang+....+ |";
// -->
</script>
</head>
<body "style=\"margin:0 ; background:transparent\"">
processing... please wait!    N.B. this text will appear very short time.
</body>
</html>|

我放了一个背景:透明,因为我在 iframe 中。我不喜欢在刷新整个页面之前几乎闪烁的这段代码。

于 2012-11-26T13:54:59.220 回答