Div+css首页

iframe

iframe 高度自适应

<iframe src=" http://www.divhome.com"  style="width: 100% ; border: 0px" frameborder=0 scrolling=yes name=right onload="init()" border="0"></iframe>
<script>
var lastHeight;
function init() {
    aaa();
    lastHeight= right.document.body.scrollHeight;
    setInterval(function(){
        if(right.document.body.scrollHeight!=lastHeight) {
            aaa();
            lastHeight= right.document.body.scrollHeight;
            }
        },1);
}
function aaa(){
    document.all('right').height=right.document.body.scrollHeight + 20;
    }
</script>

Div之家