使用jquery刷新iframe

来源:互联网 发布:女生网络名称大全 编辑:程序博客网 时间:2024/06/06 02:54
 <!DOCTYPE html><html><head>    <meta name="viewport" content="width=device-width" />    <title></title>    <script type="text/javascript">         function refreshFrame() {            $('#myframe').attr('src', $('#myframe').attr('src'));       }     </script></head><body>    <div  style="width:100%;height:350px">         <div class="row">            <iframe id="myframe" src="http://suz100:8100/CAR/EmbeddedPage_" frameborder=0 style="width:33%;height:350px" scrolling="no"></iframe>            <iframe id="myframe" src="http://suz100:8100/CAR/EmbeddedPage_" frameborder=0 style="width:33%;height:350px" scrolling="no"></iframe>            <iframe id="myframe" src="http://suz100:8100/CAR/EmbeddedPage_" frameborder=0 style="width:33%;height:350px" scrolling="no"></iframe>        </div>           <button onclick="refreshFrame()">refresh</button>    </div>    <div style="width:100%;height:350px">        <h1>中华人民共和国</h1>    </div></body></html>