开发者

Javascript Print function - file name

开发者 https://www.devze.com 2023-01-31 14:16 出处:网络
I am using the window.print() function in javaScript to print a page which is executed from a bu开发者_JAVA技巧tton onClick.

I am using the window.print() function in javaScript to print a page which is executed from a bu开发者_JAVA技巧tton onClick.

<input type="submit" value="Print" class="register-button" onClick="window.print()"/>

In the popup the default filename is the name of the website found it the tags in the header.

Is there anyway I can set a parameter in the function so the default save filename is what ever I want it to be?

Cheers.


onClick="document.title = 'My new title';window.print();"

You can try it here:

    <html>
    <head>
    <title>My title</title>
    </head>
    <body>
    <button onClick="document.title = 'My new title';window.print();">Try it</button>
    <p id="demo"></p>
    </body>
    </html>


According to MDC, window.print() has no parameters to control anything.

https://developer.mozilla.org/en/DOM/window.print

0

精彩评论

暂无评论...
验证码 换一张
取 消