Open PDF in new browser full window

后端 未结 4 778
日久生厌
日久生厌 2020-12-13 14:16

How do I open PDF document in new browser window?

The window should be full and withouth menu.

Just a PDF document in a clean full window with native Javasc

4条回答
  •  孤城傲影
    2020-12-13 14:40

    var pdf = MyPdf.pdf;
    window.open(pdf);
    

    This will open the pdf document in a full window from JavaScript

    A function to open windows would look like this:

    function openPDF(pdf){
      window.open(pdf);
      return false;
    }
    

提交回复
热议问题