请参阅http://paramasivan.in/iframe/example/index2.html
我在https://github.com/davidjbradshaw/iframe-resizer
使用iframe-resizer脚本点击底部图片链接时会转到该iframe的底部。它不是滚动到顶部。我正在使用代码
<script type="text/javascript">
iFrameResize({log : true, checkOrigin : false, interval : 1000000, warningTimeout : 1000000}, '#myIframe');
function resize(){
if ('parentIFrame' in window) {
// Fix race condition in FireFox with setTimeout
setTimeout(parentIFrame.size.bind(parentIFrame),0);
}
}
var isOldIE = (navigator.userAgent.indexOf("MSIE") !== -1); // Detect IE10 and below
iFrameResize({
heightCalculationMethod: isOldIE ? 'max' : 'lowestElement',
minSize:100
});
//function readyCallback() {
if ('parentIFrame' in window) {
parentIFrame.scrollTo(0,0);
}
// }
</script>
您能否提供滚动到顶部的代码?
任何帮助?