如何检查window.showModalDialog的可用性

How to check window.showModalDialog availability?

本文关键字:window showModalDialog 可用性 检查 何检查      更新时间:2023-09-26

Javascript方法窗口。showModalDialog已被弃用,不再在Chrome浏览器中工作。很快它将停止在火狐工作。我想用window.open替换它,但前提是浏览器不支持showModalDialog。

如何检测浏览器是否仍然支持此功能?是否可以通过modernizr库以及如何做到这一点?

使用一个条件。

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