gpt4 book ai didi

javascript - 如何从 iframe 获取父文档中的 css 元素

转载 作者:太空宇宙 更新时间:2023-11-04 04:16:39 24 4
gpt4 key购买 nike

我有<div id='footer'>在父文档中,并且没有 CSS 属性。加载文档后,我想知道 iframe 中该元素的 CSS 属性。我想知道 top 属性,然后是 left width height。

我用这个,但没用。

footer=$('#footer', window.parent.document);
footer=$(footer);
alert(footer.top);

它在警告对话框中显示“未定义”

最佳答案

试试这个,

footer=$('#footer', window.parent.document);
alert(footer.position().top);

阅读position()

或使用css()喜欢,

alert(footer.css('top'));

关于javascript - 如何从 iframe 获取父文档中的 css 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19828428/

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