僅針對具有CSS 和JavaScript 的Internet Explorer 10
針對特定版本的Internet Explorer(例如Internet Explorer 10)可能具有挑戰性。使用條件註釋的常見方法有其限制。
要成功僅定位Internet Explorer 10,請考慮以下解決方案:
對於Internet Explorer 9 至11:
@media screen and (min-width:0<pre class="brush:php;toolbar:false">@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* IE10+ CSS here */ }
對於Internet Explorer 10 特別是:
@supports (-ms-accelerator:true) { .selector { property:value; } }
對於Edge 瀏覽器:
注意不建議依賴navigatoruser.AgentAgent進行用戶代理檢測,因為它很容易被欺騙。 透過利用這些 CSS 技術,您可以有效地針對 Internet Explorer 10 瀏覽器特定的樣式和 JavaScript行為。以上是如何使用 CSS 和 JavaScript 僅定位 Internet Explorer 10?的詳細內容。更多資訊請關注PHP中文網其他相關文章!