使用JQuery从Blogger中的iframe滚动父级

时间:2014-01-25 15:45:53

标签: javascript php jquery blogger

我有一个使用PHP的表单填写应用程序并托管在Google Apps Engine上。它的网址是 post.example.com

我有Google博客博客,其网址是 www.example.com 。它有一个像 www.exaple.com/p/post.html

这样的页面

我已使用iframe在此页面中插入了post.example.com网址,这是代码

<iframe scrolling="yes" src="http://post.example.com/" style="border: none; height: 2820px; overflow: auto; width: 100%;"></iframe>

在post.example.com中,我使用以下代码在模糊时滚动文档

var YPosition = $("#TextboxID").offset().top;
$('html, body', window.parent.document).animate({ scrollTop: MessageBoxVerticalPosition}, 1000);

它仅适用于post.example.com(仅限于 Google Apps Engine ) 无法使用 www.exaple.com/p/post.html Blogger

有解决方案吗?

0 个答案:

没有答案