showModalDialog,在測(cè)試中,IE,F(xiàn)irefox中正常運(yùn)行,但是在google中,點(diǎn)擊后沒(méi)什么反應(yīng),在網(wǎng)上看了一下,谷歌瀏覽器不支持showModalDialog模態(tài)對(duì)話(huà)框和無(wú)法返回returnValue,得到了一個(gè)解決辦法
<script type="text/javascript">//開(kāi)啟模式窗口function showMyModal() {var url = "SelectUser.aspx";//傳入?yún)?shù)示例var modalReturnValue = myShowModalDialog(url, window, 300, 500);//alert(modalReturnValue.name);//窗口關(guān)閉后執(zhí)行某些方法//TODO sth}//彈出框google Chrome執(zhí)行的是openfunction myShowModalDialog(url, args, width, height) {var tempReturnValue;if (navigator.userAgent.indexOf("Chrome") > 0) {var paramsChrome = 'height=' + height + ', width=' + width + ', top=' + (((window.screen.height - height) / 2) - 50) +',left=' + ((window.screen.width - width) / 2) + ',toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no';window.open(url, "newwindow", paramsChrome);}else {var params = 'dialogWidth:' + width + 'px;dialogHeight:' + height + 'px;status:no;dialogLeft:'+ ((window.screen.width - width) / 2) + 'px;dialogTop:' + (((window.screen.height - height) / 2) - 50) + 'px;';tempReturnValue = window.showModalDialog(url, args, params);}return tempReturnValue;}</script> 最后想要點(diǎn)擊就可以出現(xiàn)對(duì)話(huà)框就行,只需要使用onclick事件進(jìn)行調(diào)用方法就行
以上給大家介紹了谷歌showModalDialog()方法不兼容出現(xiàn)對(duì)話(huà)窗口的問(wèn)題分析及解決辦法,希望對(duì)大家有所幫助。



















