//判断浏览器类型
function isIE(){ 
return navigator.appName.indexOf("Microsoft Internet Explorer")!=-1 && document.all; 
function isIE6() { 
if(!isIE())
return false;
return navigator.userAgent.split(";")[1].toLowerCase().indexOf("msie 6.0")=="-1"?false:true; 
indexof的用法javascript
function isIE7(){ 
if(!isIE())
return false;
return navigator.userAgent.split(";")[1].toLowerCase().indexOf("msie 7.0")=="-1"?false:true; 
function isIE8(){ 
if(!isIE())
return false;
return navigator.userAgent.split(";")[1].toLowerCase().indexOf("msie 8.0")=="-1"?false:true; 
}
function isIE9(){ 
if(!isIE())
return false;
return navigator.userAgent.split(";")[1].toLowerCase().indexOf("msie 9.0")=="-1"?false:true; 
}
function isNN(){ 
return navigator.userAgent.indexOf("Netscape")!=-1; 
function isOpera(){ 
return navigator.appName.indexOf("Opera")!=-1; 
function isFF(){ 
return navigator.userAgent.indexOf("Firefox")!=-1; 
function isChrome(){ 
return navigator.userAgent.indexOf("Chrome") > -1;   
}
function isSafari(){ 
return navigator.userAgent.indexOf("Safari") > -1;   
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。