Set the scroll bar to scroll subpages ifrme an element position

function srollToCatalog(id,pid){
var iframe=document.getElementById('iframe'+pid);
var iframeDocument = iframe.contentWindow.document;
var element = iframeDocument.getElementById(id);
$(iframeDocument.documentElement).animate({scrollTop:$(element)[0].offsetTop},300);//136
}

Guess you like

Origin www.cnblogs.com/yangyuzhuo/p/12453919.html