嗨,我在我的博主博客中使用 iframe 全高。
使用的 CSS 是:
#iframe {
height: 100%;
width: 100%;
display: block;
border:0;
margin:0;
padding:0;
}
和Javascript是:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>
var height = window.innerHeight;
$(document).ready( function(){
$('iframe').css('height', height);
} );
</script>
和 HTML 是:
<iframe id="iframe" src="http://mybloggertricks.com"></iframe>
我已经在 Dreamviewer 中使用相同的上述属性对其进行了测试,它在 IE 中也可以正常工作。但仅在博客中它仅在 IE 浏览器中不起作用。请帮助我解决这个问题请帮助。
在此处查看该博客:http: //new-temp.blogspot.com/2012/12/my-blogger-tricks.html