如何使用javascript在新窗口中打开PDFString?

时间:2013-10-01 09:52:19

标签: javascript pdf

我正在尝试从响应中获取PDF字符串,并在浏览器中以PDF格式显示。如何使用javascript在新窗口中打开PDFString?

以下是使用的代码段。

  

var newWindow = window.open('','newwin','width = 400,height = 500');
              newWindow.document.open();
              newWindow.document.write(response.responseText);
              newWindow.document.close();

0 个答案:

没有答案