Javascript:在同一个 Window 中并排打开两个 Pdf Adob​​e

Javascript: Open Two Pdf Adobe Side By Side in Same Window

在 Javascript 或 Angular 中有没有办法在同一个 window 中并排查看两个 Adob​​e PDF?我手动看到很多资源

尝试在代码中实现,可能使用 window.open 或其他语法

https://community.adobe.com/t5/acrobat-reader/how-do-i-display-two-pdf-documents-side-by-side/td-p/7825917

https://answers.acrobatusers.com/How-view-pdf-separate-pdf-side-side-q144843.aspx

https://www.youtube.com/watch?v=p0qRM5koats

利用Angular 10 打字稿

我会在多个 iframe 中打开它们。

<iframe src="path/to/pdf1.pdf"></iframe>
<iframe src="path/to/pdf2.pdf"></iframe>

使用window.open

var win = window.open();
win.document.write(`<iframe width="${width}" height="${height}" src="path/to/pdf1.pdf" frameborder="0" allowfullscreen></iframe><iframe width="${width}" height="${height}" src="path/to/pdf2.pdf" frameborder="0" allowfullscreen></iframe>`)