How does the Javascript print function work? Can I create a document using javascript and print it off?

后端 未结 8 1577
梦毁少年i
梦毁少年i 2021-02-09 07:17

I know you can use window.print() to print the current page... but what I want to know is can I build a document using javascript in order to populate it with data and print it

8条回答
  •  你的背包
    2021-02-09 07:42

    Print() is a method on the window object. If you create a document in a window using javascript, then call print on that window object, it should work.

    
    

    Example modified from w3schools.com window open example.

提交回复
热议问题