我有一个动态的 Div 数据。我想在某些事件触发后在弹出窗口中打开该 div 数据。我完成了我的代码。但是当弹出窗口在我的浏览器中打开时,它没有居中对齐..它在角落里..
我的代码:-
var w = 620;
var h = 360;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var divText = document.getElementById("inviteConfirmationMessage").outerHTML;
var myWindow = window.open('','','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
var doc = myWindow.document;
doc.open();
doc.write(divText);
doc.close();
在 Mozilla firefox 中工作,但不在 Chrome 中工作——
请帮帮我!或任何指导。