javascript - chrome 沒有showModalDialog方法怎么辦
問題描述
在訪問一些路由器設(shè)置頁面的時候,由于比較老,chrome竟然無法正常彈出設(shè)置窗口,console里報錯:showModalDialog方法不存在
問題解答
回答1:直接把對應(yīng)的showModalDialog方法改成open就可以了
另stackoverflow上的代碼,但是有時候不起作用
<script type='text/javascript'> // fix for deprecated method in Chrome 37 if (!window.showModalDialog) { window.showModalDialog = function (arg1, arg2, arg3) {var w;var h;var resizable = 'no';var scroll = 'no';var status = 'no';// get the modal specsvar mdattrs = arg3.split(';');for (i = 0; i < mdattrs.length; i++) { var mdattr = mdattrs[i].split(':'); var n = mdattr[0]; var v = mdattr[1]; if (n) { n = n.trim().toLowerCase(); } if (v) { v = v.trim().toLowerCase(); } if (n == 'dialogheight') { h = v.replace('px', ''); } else if (n == 'dialogwidth') { w = v.replace('px', ''); } else if (n == 'resizable') { resizable = v; } else if (n == 'scroll') { scroll = v; } else if (n == 'status') { status = v; }}var left = window.screenX + (window.outerWidth / 2) - (w / 2);var top = window.screenY + (window.outerHeight / 2) - (h / 2);var targetWin = window.open(arg1, arg1, ’toolbar=no, location=no, directories=no, status=’ + status + ’, menubar=no, scrollbars=’ + scroll + ’, resizable=’ + resizable + ’, copyhistory=no, width=’ + w + ’, height=’ + h + ’, top=’ + top + ’, left=’ + left);targetWin.focus(); }; }</script>
相關(guān)文章:
1. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入2. 預(yù)訂金和尾款分別支付3. thinkphp6使用驗證器 信息如何輸出到前端頁面4. macos - 無法source activate python275. python - 調(diào)用api輸出頁面,會有標(biāo)簽出現(xiàn),請問如何清掉?6. 運行python程序時出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯誤?7. python - sqlalchemy更新數(shù)據(jù)報錯8. 我在導(dǎo)入模板資源時遇到無法顯示的問題,請老師解答下9. empty比isset更嚴格一點10. javascript - h5微信中怎么禁止橫屏

網(wǎng)公網(wǎng)安備