gpt4 book ai didi

javascript - 访问iframe的顶部html和body标签

转载 作者:行者123 更新时间:2023-11-28 16:26:46 25 4
gpt4 key购买 nike

我有以下 iFrame 结构,我想访问顶部 html 的 html 和 body 标记,这样我就可以通过单击 iframe 内的按钮 ScrollView 顶部。

 <html>
<body>
<div>
<iframe>
<html>
<body>
content
<input>button</input>
</body>
</html>
</iframe>
</div>
</body>
</html>

最佳答案

使用 top 对象(仅适用于 same domain ):

var topDocument = top.document;
//do anything you want

//Example:
topDocument.documentElement; //Returns a reference to the HTML element
topDocument.body; //Returns a reference to the top's body

关于javascript - 访问iframe的顶部html和body标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7752565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com