开发者

Using javascript to scroll iframe up and down

开发者 https://www.devze.com 2022-12-10 03:18 出处:网络
Is it possi开发者_Go百科ble to scroll the iframe window from the parent window using keys or javascript? The iframe content is from another domain, different from the parent window.Since the iframe co

Is it possi开发者_Go百科ble to scroll the iframe window from the parent window using keys or javascript? The iframe content is from another domain, different from the parent window.


Since the iframe content is from another domain, you will not be able to alter it's DOM due to security reasons.

Although you can scroll it by using the arrow keys, when you have it activated. At least it works for me in Chrome and Firefox.

If you want to be able to scroll it from javascript, I would suggest the following approach. (it assumes you know the width and height of the iframe content and your iframe). Basically let a div in your DOM take care of scrolling.

<a href="#" id="scroll">Scroll to (400,400)!</a><br />

<div id="google" style="width: 300px; height: 200px; overflow: auto;">
   <iframe width="800" height="600" src="http://www.google.com/" scrolling="no">
   </iframe>
</div>

<script type="text/javascript">
$("#scroll").click(function()
{
  $("#google").scrollTop(400).scrollLeft(400);
  return false;
});
</script>

For smoother scrolling of the div you could try the code from this article.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号