我有一個條件網頁檢測瀏覽器和顯示div。隱藏iFrame或Div
我有5個5格與5 ID。
喜歡:
<div id="firefox">
iframe here
</div>
<div id="chrome">
iframe here
</div>
<div id="ie">
iframe here
</div>
<div id="opera">
iframe here
</div>
<div id="safari">
iframe here
</div>
當我打開從Firefox該網頁時,其顯示你的firefox iframe中。這一次的身體類是「壁虎贏」
當我從鉻打開此網頁,它顯示你的Firefox iframe。這一次的正文類是「webkit chrome」
當我從safari打開這個網頁時,它會顯示你的firefox iframe。這次的機體類是「safari」
當我從IE打開這個網頁時,它會顯示你的firefox iframe。這次體類是空白的。
現在我需要一個javascript代碼,...
當身體類是「壁虎贏」這個時候它會自動刪除他人格,如:鉻,歌劇,Safari ..全內容。
當它的使用體類「chrome」這次它去掉了firefox,即opera和其他。只保留鉻。
它可能嗎???
如果可能的話是什麼代碼?
我的完整代碼:http://pastie.org/private/6who43sltqkttc0taoqjug
我不設置顯示無碼。它已經工作。但我想要基於html/body類的代碼。
- 當body/html類爲chrome時,只顯示chrome div並從頁面中刪除所有其他div。
- 當body/html class是firefox時,只顯示firefox div並從頁面中刪除所有其他div。
- 當body/html類爲空時,只顯示IE div並從頁面中刪除所有其他div。
我不想設置display:none
或visibility:hidden
代碼。我想要remove()
的JavaScript代碼。
該庫的鏈接可以真正幫助OP。 – Shikiryu
哪個庫? –
http://www.quirksmode.org/js/detect.html –