我们正在Microsoft Edge(Spartan)测试我们的网站,在我们的网站中,我们正在广泛使用jQuery模式窗口。当我们在Spartan浏览器中打开那些jQuery模态窗口时,模态窗口会打开,但模态窗口没有响应。我的意思是,我无法在该模式窗口中执行任何操作,例如单击任何按钮或输入任何文本等。但是在Windows 10中的IE 11中,相同的功能正常工作。
答案 0 :(得分:0)
您可以使用开发人员工具F12调试Microsoft Edge。它现在正在运作。看看我创建的这个JSFiddle,它显示了一个模态窗口。 http://jsfiddle.net/dj8kobvy/
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
$(function(){ $(“#dialog”)。dialog(); });