标签: javascript html printing
我想创建一个按钮来打印新创建的html页面并将其打印在我网站的索引页面中。 现在我有一个解决方法,打开我要打印的页面,立即打开打印菜单然后重定向到主页面
window.onload = function () { window.print(); document.location.href = "/"; }
有没有优雅的解决方案?
答案 0 :(得分:0)
您的问题已在Printing a web page using just url and without opening new window?
MDN有nice example here