如何检查浏览器是否在'html'或'body'处溢出?

时间:2014-06-28 12:25:46

标签: javascript jquery firefox jquery-plugins webkit

我发现webkit浏览器将溢出放在'body'级别,而其余的则在'html'级别执行。如何区分使用javascript或jquery? 我想使用animate({scrollTop:...},...),但不想使用“body,html或stop(true,true)。除此之外我还能做什么? 如果可以根据浏览器进行区分,那将会很棒。

1 个答案:

答案 0 :(得分:0)

如果您真的想要将浏览器与客户端区分开来,可以使用javascript查找浏览器并根据不同的浏览器应用更改。

这是我从互联网上获得的代码,可以完全区分浏览器。

var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 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 && !isOpera;              // Chrome 1+
var isIE = /*@cc_on!@*/false || !!document.documentMode; // At least IE6


if(isFirefox){
    //do the change
} else if (isChrome){
    //do the change
}