DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> js如何設置在iframe框架中指定div不顯示
js如何設置在iframe框架中指定div不顯示
編輯:JavaScript綜合知識     

 在iframe框架中指定div不顯示,有多種實現方法,接下來與大家分享下使用js的具體實現,感興趣的朋友可以參考下

代碼如下: <html xmlns="http://www.w3.org/1999/xhtml" >  <head runat="server">  <title>測試</title>  <script language="javascript" type="text/javascript">    function getStyle() {    if (window.top == window.self) {    document.getElementById("top").style.display = 'block';    } else {    document.getElementById("top").style.display = 'none';      }    }  </script>    </head>  <body onload="getStyle();">  <form id="form1" runat="server">  <div id="top">  在框架中不顯示,正常訪問顯示  </div>  </form>  </body>  </html>    當當前頁面正常訪問時顯示div top    當當前頁面在iframe中時頁面不顯示 div top   
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved