JS操作iframe

防止iframe嵌套:

if(window !== window.top) {
     window.top.location.href = window.location.href;
}

动态改变iframe的高度

setTimeout(function(){
     elFrame.height = elIframe.contentWindow.document.body.offsetHeight;
}, 100);

你可能感兴趣的:(iframe)