jQery源码分析14: IE嗅探的另类方法——也许也是屎上最简单的方法

// Check if a string has a non-whitespace character in it
var rnotwhite = /\S/;

// IE doesn't match non-breaking spaces with \s
if ( rnotwhite.test( "\xA0" ) ) {
alert('i am IE');
} else {
alert('i am not IE');

}


同样也可以使用传统的方式 :

var isIE = /MSIE/.test( navigator.userAgent );

你可能感兴趣的:(源码分析)