Javascript方法window.showModalDialog已弃用,现在无法在Chrome浏览器中使用。很快它将停止在Fire Fox中工作。我想用window.open替换它,但是仅当浏览器不支持showModalDialog时才可以。

如何检测浏览器是否仍然支持此功能?
可以用modernizr库来做,怎么做?

最佳答案

使用条件。

if(window.showModalDialog) console.log("derp");
else console.log("herp");

关于javascript - 如何检查window.showModalDialog的可用性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26898165/

10-09 23:52