Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>iframe 自适应高度</title>
<script type="text/javascript">
function SetCwinHeight(){
var bobo=document.getElementById("main”); //iframe id
if (document.getElementById){
if (bobo && !window.opera){
if(bobo.contentDocument && bobo.contentDocument.body.offsetHeight){
bobo.height = bobo.contentDocument.body.offsetHeight;
}else if(bobo.Document && bobo.Document.body.scrollHeight){
bobo.height = bobo.Document.body.scrollHeight+30;
//alert(document.getElementById(“amdright”).style.width);
}
</script>
</head>
<body>
<iframe id="main" name="main" src="http://www.baidu.com" scrolling="no" width="100%" frameborder="0" onload="SetCwinHeight()"></iframe>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx