有什么方法可以加载npm程序包,具体取决于所使用的浏览器?

时间:2019-12-11 17:54:14

标签: javascript npm polyfills

具体地说,我只想在Edge浏览器上浏览时使用此ResizeObserver Polyfill。 npm软件包中的ponyfill创意参考是我必须走的路线吗?听起来好像我必须创建自己的ponyfill吗?还是有另一种思维方式来解决这个问题?

1 个答案:

答案 0 :(得分:0)

当然,您可以通过检测浏览器来做到这一点。

首先,您仍然需要安装该软件包。然后,当页面加载成功时,您可以检测到它:

// Opera 8.0+
var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;

// Firefox 1.0+
var isFirefox = typeof InstallTrigger !== 'undefined';

// Safari 3.0+ "[object HTMLElementConstructor]" 
var isSafari = /constructor/i.test(window.HTMLElement) || (function (p) { return p.toString() === "[object SafariRemoteNotification]"; })(!window['safari'] || (typeof safari !== 'undefined' && safari.pushNotification));

// Internet Explorer 6-11
var isIE = /*@cc_on!@*/false || !!document.documentMode;

// Edge 20+
var isEdge = !isIE && !!window.StyleMedia;

// Chrome 1 - 71
var isChrome = !!window.chrome && (!!window.chrome.webstore || !!window.chrome.runtime);

// Blink engine detection
var isBlink = (isChrome || isOpera) && !!window.CSS;


var output = 'Detecting browsers by ducktyping:<hr>';
output += 'isFirefox: ' + isFirefox + '<br>';
output += 'isChrome: ' + isChrome + '<br>';
output += 'isSafari: ' + isSafari + '<br>';
output += 'isOpera: ' + isOpera + '<br>';
output += 'isIE: ' + isIE + '<br>';
output += 'isEdge: ' + isEdge + '<br>';
output += 'isBlink: ' + isBlink + '<br>';
document.body.innerHTML = output;

isEdge变成true时,您可以加载并使用该模块。

参考:How to detect Safari, Chrome, IE, Firefox and Opera browser?