如何找到窗口顶部位置和我的iframe开始位置之间的距离。
我试过这种方法Determine distance from the top of a div to top of window with javascript 但它不适合我。
请提出解决方案。
答案 0 :(得分:2)
我尝试过使用这种方法:
var topDistance = $('iframe')[0].offsetTop;
取得了不同的成功。其中,您的标签名称为:
var topDistance = $('#myframeId').offsetTop;