0

嘿,谢谢你的时间!!

我想在我的网站上添加一个登录页面。所以,我使用 iframe 并将其居中显示用户名、密码和连接按钮。但是,当用户单击 iframe 内的连接按钮时,我希望我的页面加载 iframe 页面。

首先,我希望他们添加用户名和密码信息。然后单击加载,然后页面重新加载但保留他们的信息(我希望)。

这是代码

<iframe id="iframe" scrolling="no" 
    src="http://sms.altasoft.gr/panel/index.asp?lang=el&disp_function=user_login&id=5E8A0F4B-063B-4A7A-81FE-99579AF44BAA">
            <p>Your browser does not support iframes.</p>
</iframe>
4

2 回答 2

0

如果加载到 iframe 中的页面使用一些 cookie 来保存登录信息,这应该可以工作:

<script type="text/javascript">
    window.onload = function(){
        var iFrame = document.getElementById("iframe");
        iFrame.onload = function(){
            window.location = iFrame.src;
        };
    }
</script>
于 2013-07-24T11:24:46.623 回答
0

如果我理解正确,您正在使用 iframe 并希望在 iframe 内的表单提交后重新加载主页。那是对的吗?如果是这样,请将 'target="_top"' 添加到 iframe 内的表单中,它应该重新加载整个内容。

于 2015-12-24T15:26:24.157 回答