<script language="
javascript">
/**
*
iframe自适应宽度与高度
* by
http://www.jb200.com
*/
autoHeight();
function autoHeight(){
var tag=document.getElementById('iframe');
if(tag && tag.clientHeight < tag.contentWindow.document.body.scrollHeight){
tag.style.height = tag.contentWindow.document.body.scrollHeight + 'px';
}
setTimeout("autoHeight()", 10);
}
</script>