0

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

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

4

1 回答 1

2

使用条件。

if(window.showModalDialog) console.log("derp");
else console.log("herp");
于 2014-11-12T22:49:39.137 回答