从iframe向下滚动到部分

时间:2014-01-29 18:32:35

标签: jquery html css iframe

如何使用jquery从iframe中的链接滚动到父页面中的某个部分?

此问题显示如何滚动到顶部,但我想将向下滚动到iframe下方的部分,而不是滚动到父级的顶部。 jQuery scroll to top of iframe parent

请有人帮忙吗?

1 个答案:

答案 0 :(得分:0)

我认为您可以将this post中的想法与您引用的想法放在一起。

<h1 id="target">Scroll to here</h1>

window.parent.document.getElementById("target").scrollIntoView(true);
相关问题