答案 0 :(得分:1)
如果没有类似于Chrome的条件(如上面的评论),那么您可以随时检查服务器端的用户代理,如果是Chrome,则添加所需的meta
标记。
答案 1 :(得分:1)
检测浏览器是not a good idea。虽然旧版本的jQuery支持$.browser()
,但并未广泛建议。
因此,尝试找出问题的根本原因并使其与浏览器兼容。
<强>更新强>
我使用此answer创建了一个小提琴,
var isOpera = !!window.opera || navigator.userAgent.indexOf('Opera') >= 0;
// Opera 8.0+ (UA detection to detect Blink/v8-powered Opera)
var isFirefox = typeof InstallTrigger !== 'undefined'; // Firefox 1.0+
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
// At least Safari 3+: "[object HTMLElementConstructor]"
var isChrome = !!window.chrome; // Chrome 1+
var isIE = /*@cc_on!@*/false; // At least IE6
document.write('isFirefox: ' + isFirefox + '<br>');
document.write('isChrome: ' + isChrome + '<br>');
document.write('isSafari: ' + isSafari + '<br>');
document.write('isOpera: ' + isOpera + '<br>');
document.write('isIE: ' + isIE + '<br>');
使用上面的浏览器检测代码,我添加了这个
if (isFirefox) {
$('meta[http-equiv=Refresh]').remove();
}