ifsp在jsp中加载问题

时间:2011-05-30 11:21:44

标签: javascript html jsp iframe

<head>
<TITLE> Sample CIM Implementation </TITLE>
<script type="text/javascript">
      function init(){
            document.forms[0].submit();
      }
</script>

</head>
<BODY onload="init()">

<iframe id="authpopup" src="https://test.authorize.net/profile/manage">

</iframe>

<form type ="hidden" method="post" name="iframepopup"  id="formAuthorizeNetPage" style="display:none;">
      <input type="hidden" name="Token" value="<%=token%>"/>
</form>

</BODY>

</HTML>

我有一个jsp页面,其中iam加载iframe。 iframe正在不断刷新我实际上不希望iframe得到刷新。这似乎闪烁

1 个答案:

答案 0 :(得分:4)

一旦页面加载,您就会调用提交表单的init()。这会导致包含iframe的页面重新加载,从而导致iframe重新加载。然后页面再次调用init()(因为它刚刚重新加载),依此类推。

不要那样做。