JS 或css 識別 IE版本的幾種方法

來源:互聯網
上載者:User

JS 或css教程 識別 IE版本的幾種方法

今天收藏了這幾種關於識別ie版本的幾種代碼,有需要的朋友參考一下。

var isIE=!!window.ActiveXObject;
var isIE6=isIE&&!window.XMLHttpRequest;
var isIE8=isIE&&!!document.documentMode;
var isIE7=isIE&&!isIE6&&!isIE8;
if (isIE){
    if (isIE6){
        alert("ie6");
    }else if (isIE8){
        alert("ie8");
    }else if (isIE7){
        alert("ie7");
    }
}


--------------------------------------------------------------------------------

if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/6./i)=="6."){
    alert("IE 6");
}
else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/7./i)=="7."){
    alert("IE 7");
}
else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/8./i)=="8."){
    alert("IE 8");
}
else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/9./i)=="9."){
    alert("IE 9");
}


--------------------------------------------------------------------------------

if(navigator.userAgent.indexOf("Opera") != -1) {
    alert('Opera');
}
else if(navigator.userAgent.indexOf("MSIE") != -1) {
    alert('Internet Explorer');
}
else if(navigator.userAgent.indexOf("Firefox") != -1) {
    alert('Firefox');
}
else if(navigator.userAgent.indexOf("Netscape") != -1) {
    alert('Netscape');
}
else if(navigator.userAgent.indexOf("Safari") != -1) {
    alert('Safari');
}
else{
    alert('無法識別的瀏覽器。');
}


--------------------------------------------------------------------------------

if(!+'v1' && !'1'[0]){
    alert("
再列出一些css方法

針對樣式名
如果只讓ie6看見用*html .head{color:#000;}
如果只讓ie7看見用*+html .head{color:#000;}
如果只讓ff看見用:root body .head{color:#000;}
如果只讓ff、IE8看見用html>/**/body .head{color:#000;}
如果只是不讓ie6看見用html>body .head{color:#000;} 即對IE 6無效
如果只是不讓ff、IE8看見用*body .head{color:#000;} 即對ff、IE8無效

針對具體屬性
如果只讓ie6看見用_ .head{_color:#000;}
如果只讓ie7看見用+與_結合的方法: .head{+color:#f00;!;_color:#000;}

IE8正式版hack
9″ 例:”margin:0px auto9;”.這裡的”9″可以區別所有IE8和FireFox.
“*” IE6、IE7可以識別.IE8、FireFox不能.
“_” IE6可以識別”_”IE7、IE8、FireFox不能.
如:
.a {color:#f00; color:#f609; +color:#00FF00; _color:#0000FF; }
從左至右分別對應 FFIE8 IE7 IE6
————————————————-
各瀏覽器CSS hack相容表:
IE6IE7IE8FirefoxChromeSafari!importantYY_Y*YY*+Y9YYYYnth-of-type(1)YY
程式碼範例:
#test{
color:red; /* 所有瀏覽器都支援 */
color:red !important;/* Firefox、IE7支援 */
_color:red; /* IE6支援 */
*color:red; /* IE6、IE7支援 */
*+color:red; /* IE7支援 */
color:red9; /* IE6、IE7、IE8支援 */
color:red; /* IE8支援 */
}
body:nth-of-type(1) p{color:red;} /* Chrome、Safari支援 */

整體測試程式碼範例:
.test{
color:#;
color:#0000FF;
[color:#00FF00;
*color:#FFFF00;
_color:#FF0000;
}

其他說明:
1、如果你的頁面對IE7相容沒有問題,又不想大量修改現有代碼,同時又能在IE8中正常使用,微軟聲稱,開發商僅須要在目前相容IE7的網站上添加一行代碼即可解決問題,此代碼如下:

2、body:nth-of-type(1) 如果這樣寫,表示全域尋找body,將會對應第一個。
3、還有其他寫法,比如:
*html #test{}或者 *+html #test{}
4、*+html 對IE7的hack 必須保證HTML頂部有如下聲明:

5、順序:Firefox、IE8、IE7、IE6依次排列。

小知識:什麼是CSS hack?
由於不同的瀏覽器,比如IE6、IE7、IE8、Firefox等,對CSS的解析認識不一樣,因此會導致產生的頁面效果不一樣,得不到我們所須要的頁面效果。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.