我设法获得了一个在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>