1

IE9 を識別するオブジェクト検出機能チェックを探しています。手伝って頂けますか?

4

3 に答える 3

6

James Padolseyによるこのスニペットをチェックしてください:

// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
//     ie === undefined
// If you're in IE (>=5) then you can determine which version:
//     ie === 7; // IE7
// Thus, to detect IE:
//     if (ie) {}
// And to detect the version:
//     ie === 6 // IE6
//     ie > 7 // IE8, IE9 ...
//     ie < 9 // Anything less than IE9
// ----------------------------------------------------------

// UPDATE: Now using Live NodeList idea from @jdalton

var ie = (function(){

    var undef,
        v = 3,
        div = document.createElement('div'),
        all = div.getElementsByTagName('i');

    while (
        div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->',
        all[0]
    );

    return v > 4 ? v : undef;

}());

その後、次のように使用できます。

if (ie == 9) {
  // It’s IE9!
  // Insert your code here
}

ここでの良い点は、UA 文字列 (それ自体は信頼できません) を盗聴しないことです。代わりに、IE で確実に機能する条件付きコメントを使用します。

これは、IE5-9 の検出に使用できます。

于 2012-02-01T10:51:43.947 に答える
0

各リリースで導入されたIE ウィンドウ オブジェクトのプロパティを使用して、IE のバージョンを識別します。

  • IE >= 7:("onpropertychange" in document) && (!!window.XMLHttpRequest)

  • IE >= 8:("onpropertychange" in document) && (!!window.XDomainRequest)

  • IE >= 9:("onpropertychange" in document) && (!!window.innerWidth)

  • IE >= 10:("onpropertychange" in document) && (!!window.matchMedia)

  • IE >= 11:(!!window.msMatchMedia) && (!window.doScroll)

于 2013-05-23T02:20:36.050 に答える
0

これがあなたの求めているものであると 100% 確信できるわけではありませんが、訪問者のブラウザーに関する情報を検出したい場合は、チェックを行うことができますnavigator.appVersion

例:

<div id="example"></div>

<script type="text/javascript">

txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt+= "<p>Browser Name: " + navigator.appName + "</p>";
txt+= "<p>Browser Version: " + navigator.appVersion + "</p>";
txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt+= "<p>Platform: " + navigator.platform + "</p>";
txt+= "<p>User-agent header: " + navigator.userAgent + "</p>";

document.getElementById("example").innerHTML=txt;

</script>
于 2012-02-01T10:52:15.557 に答える