无法在 iframe 内输入内容

问题描述 投票:0回答:1

当我编码时,我喜欢放置 iframe,但问题是当我查看完成的项目并尝试输入链接时,它不起作用

这是代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Eaglercraft Site - Astra Client</title>
    <link rel="icon" type="image/x-icon" href="astra client.jpeg">
  </head>
  <body><iframe src="https://raw.githack.com/BarneyCompiler/AstraClientEagler/main/javascript/EaglercraftX_1.8_Offline_International.html" frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0%;left:0px;right:0px;bottom:0px" height="100%" width="100%"></iframe>
    <p>Your browser does not support iframes.</p>
  </body>
</html>

所以当我尝试在游戏中输入我的用户名时,当我看到它看起来不起作用时

我尝试了在互联网上找到的不同方法,例如嵌入代码,但这也不起作用。我暂时没有尝试其他任何事情。我确实知道,如果没有 iframe 或仅将链接嵌入到新选项卡中,我就可以输入。

html iframe embed
1个回答
0
投票

尝试编辑 iframe:

<iframe src='link' frameborder=0 style='overflow:hidden!important;overflow-x:hidden!important;overflow-y:hidden!important;height:100%;width:100%;position:absolute!important;top:0%;left:0px;right:0px;bottom:0px;z-index:9999!important;' height='99%' width='100%'></iframe>
然后在 iframe 后面制作一个不可见的按钮:
<button onclick='this.iframe[0].contentWindow.document.body.focus();' hidden>‎ </button>

© www.soinside.com 2019 - 2024. All rights reserved.