varmatched, browser;
jQuery.uaMatch =function( ua ) {
ua = ua.toLowerCase();
varmatch = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
/(msie) ([\w.]+)/.exec( ua ) ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
[];
return{
browser: match[ 1 ] ||"",
version: match[ 2 ] ||"0"
};
};
matched = jQuery.uaMatch( navigator.userAgent );
browser = {};
if( matched.browser ) {
browser[ matched.browser ] =true;
browser.version = matched.version;
}
// Chrome is Webkit, but Webkit is also Safari.
if( browser.chrome ) {
browser.webkit =true;
}elseif( browser.webkit ) {
browser.safari =true;
}
jQuery.browser = browser;
//下面是直接写的判断,上面jq的获取方法
if(matched.browser =='mozilla') {
$('#Online-message .liuyan').css({'padding-left':'0px','padding-right':'0px'})
}相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上就是jQuery判断浏览器版本的方法的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号