如何使用 jQuery 访问 iFrame 中父窗口的滚动属性
基本上我想弄清楚父框架是否正在滚动。
我以为会是这样的,但没有成功;
$(window.top).scroll(function () { alert('I\'m scrolling!') });
更新:这是一个 Facebook 应用程序。
有人吗?
Basically I am tring to figure out if the parent frame is being scrolled or not.
I thought it would be something like this but that didn't work;
$(window.top).scroll(function () { alert('I\'m scrolling!') });
UPDATE: It's a Facebook App.
Anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sublet,
引用另一篇文章中的 Artlung,
“请记住,当您为 Facebook 编写 JavaScript 代码时,您必须以符合 FBJS 的方式编写它,他们的理由是“我们构建 FBJS 是为了为开发人员提供他们所需的所有功能,并保护我们的“
FBJQRY 是一个库,旨在在 FBJS 中提供类似 jQuery 的语法,并且可能是您关于非 iframe Facebook 应用程序问题的答案。”
如何在 Facebook 应用程序中使用 jQuery
Sublet,
Quoting Artlung from another post,
"Remember that when you code JavaScript for Facebook you must write it in a way that conforms to FBJS, their rationale is "We built FBJS to empower developers with all the functionality they need, and to protect our users' privacy at the same time."
FBJQRY, is a library that aims to provide jQuery-like syntax in FBJS, and may be the answer to your question for non-iframe Facebook Applications."
How to use jQuery in a facebook application