在iframe中打开链接并滚动到iframe

时间:2018-02-08 12:26:52

标签: javascript html css iframe hyperlink

我设法获得了一个在iframe中打开的链接。但由于该帧位于页面的底部,我想在一次单击的同时滚动它。 怎么样?

链接

<a href="ccs.html" target="result-view"><button id="click" class="btn
btn-table">View Details</button>     </a>

iframe,调整内容

<iframe name="result-view" width="100%" scrolling="no" onload="resizeIframe(this)"></iframe>


      <script>  function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';  } </script>

0 个答案:

没有答案