载入页面的问题托大大们的福 搞定了
然而还有个问题就是
我想让显示的网页效果和iframe一样 内容显示在指定区域 能用滚动条拖动 

解决方案 »

  1.   

    <div style="width:500px; height:200px; overflow:scroll">
    </div>
    可以加上这个滚动条
      

  2.   


    <table border="0" cellpadding="0" cellspacing="0" style="width: 500px">
                    <tr>
                        <td style="height: 19px; text-align: left">
                            <!--overflow:auto页面自动识别是否加滚动,这里高度400,超过400自动加,在后面的都是样式-->
                            <div id="div2" style="overflow: auto; height: 400px; scrollbar-face-color: #0E75E2;
                                scrollbar-highlight-color: #0E75E2; scrollbar-shadow-color: #0E75E2; scrollbar-arrow-color: #C5E0FA;
                                scrollbar-base-color: #0E75E2; scrollbar-dark-shadow-color: #ff6600;">
                                <table border="0" cellpadding="0" cellspacing="0" style="width: 90%;">
                                    <tr>
                                        <td>
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果<br />
                                            DIV滚动效果</td>
                                    </tr>
                                </table>
                            </div>
                        </td>
                    </tr>
                </table>