我正在 ipod 上的 safari 浏览器中测试我的 asp.net 应用程序。我在打开弹出窗口时遇到了一些问题。我有一个 gridview,其中有一些链接按钮。点击这些链接按钮时,弹出窗口应该打开。但是什么都没有发生。这个问题的任何解决方案?
function OpenQuestionWindow(Store, AuditDate, SectionId) {
var returnValue = window.showModalDialog("Questions.aspx?store=" + Store + "&auditDate=" + AuditDate + "§ion=" + SectionId, "", "dialogHeight:750px; dialogWidth:950px;center:yes;edge:raised; Scroll:Yes; ");
if (returnValue == true) {
__doPostBack('', '');
}
}