单击时iframe按钮重定向

时间:2018-02-25 09:31:00

标签: html iframe

我为我的网站登录制作了一个全屏iframe,因为我无法访问它的源代码,我希望它在用户按下登录按钮时重定向到另一个页面,这是可能的,怎么会我做到了。

<!DOCTYPE html>
<html>
    <body>
<iframe src="https://example.com" style="position:fixed; top:0px; left:0px; bottom:0px; right:0px; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
Your browser doesn't support iframes
</iframe>

</style>

</script>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

我认为这会起作用。但是如果你给我代码,我会编辑这个答案并使其更好地供你使用。

<form action="page.html">
<input type="email" name="email">
<input type="password" name="password">
<button type="submit">Submit</button>
</form>

当用户点击按钮时,此代码会将页面重定向到page.html。