欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

一個奇葩的最短的 IE 版本判斷JS腳本

 更新時間:2014年05月28日 10:35:49   作者:  
這篇文章主要介紹了一個奇葩的最短的 IE 版本判斷JS腳本,非??岬囊欢未a,需要的朋友可以參考下

使用 conditional comment 來判斷 IE 的版本。嗯,是早早有人提出,但沒有認真看代碼。昨天剛好在看 CSS3 PIE 的時候看到,覺得是不是不靠譜。今天看到 Paul Irish 也提起,那么,推薦一下吧。這是作者博客上寫的:

復制代碼 代碼如下:

// ----------------------------------------------------------
// 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;

}());

注意一下這個 while 語句。是我覺得最有趣的。對于逗號操作符。我也不熟悉,還只是停留在像變量定義的用法上。比如:

復制代碼 代碼如下:

var  a= 'b', c = 'd', e = 'f';

var obj = {
 a: 'b',
 c: 'd',
 e: 'f'
}


問了工友 @kangpangpang,再查了一下書。其實這個比較少見。通常是返回最后一個值。
復制代碼 代碼如下:

var a = (1,2,3,5,6,0,9,4); // a === 4

嗯,大概就是這樣。挺有趣的。

相關文章

最新評論