GoogleshowModalDialog()方法不相容出現交談視窗的解決辦法,Googleshowmodaldialog

來源:互聯網
上載者:User

GoogleshowModalDialog()方法不相容出現交談視窗的解決辦法,Googleshowmodaldialog

showModalDialog,在測試中,IE,Firefox中正常運行,但是在google中,點擊後沒什麼反應,在網上看了一下,Google瀏覽器不支援showModalDialog模態對話方塊和無法返回returnValue,得到了一個解決辦法

<script type="text/javascript">//開啟強制回應視窗function showMyModal() {var url = "SelectUser.aspx";//傳入參數樣本var modalReturnValue = myShowModalDialog(url, window, 300, 500);//alert(modalReturnValue.name);//視窗關閉後執行某些方法//TODO sth}//彈出框google Chrome執行的是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> 

最後想要點擊就可以出現對話方塊就行,只需要使用onclick事件進行調用方法就行

以上給大家介紹了GoogleshowModalDialog()方法不相容出現交談視窗的問題分析及解決辦法,希望對大家有所協助。

您可能感興趣的文章:
  • showModalDialog在Google瀏覽器下會返回Null的解決方案
  • Google瀏覽器不支援showModalDialog模態對話方塊的解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.