我在父文档中有<div id='footer'>
,并且没有CSS属性。
加载文档后,我想知道iframe中该元素的CSS属性。我想知道顶部属性,左边的宽度高度将随之而来。
我用它,但没有用。
footer=$('#footer', window.parent.document);
footer=$(footer);
alert(footer.top);
在警告对话框中显示“未定义”
答案 0 :(得分:2)
试试这个,
footer=$('#footer', window.parent.document);
alert(footer.position().top);
或者使用css()之类的,
alert(footer.css('top'));