标签: javascript html internet-explorer microsoft-edge feature-detection
我正在使用 FontFace 预加载字体,它在chrome上工作正常,但它会在Edge中停止页面,因为EdgeFace中没有定义FontFace。
如何检查FontFace类原型是否存在(在JavaScript中)所以我不在Edge中构建它?
(我知道Edge中不存在FontFace原型,但只是想通过在Edge中使用FontFace跳过来防止页面崩溃)
我试过这个,但是在边缘不起作用,它会崩溃。
if (typeof FontFace != undefined) { .... }