1. 程式人生 > >模態視窗資料複製貼上

模態視窗資料複製貼上

最近客戶有個需求,視窗彈出的資料不能複製,window.showModalDialog(),這種模態的視窗開啟不能複製,改為open就可以了

居中的問題,參考論壇有個帖子回覆的,問題解決。

 var iTop = (window.screen.availHeight-30-400)/2;
  var iLeft = (window.screen.availWidth-10-817)/2;

window.open("null,"_blank","top="+iTop+",left="+iLeft+",scrollbars=no,height=400,width=817,status=no,toolbar=no,menubar=no,location=no,Resizable=no");