Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道任何开源代码,或者有任何我可以使用的代码,可以在 MVC 应用程序中用于在信封(可以选择尺寸)或标准尺寸的标签(再次使用尺寸等)上打印(地址)可以选择)。
这一定是一个常见的场景,但我找不到任何可重用的代码
您可以window.print()从 javascript 调用,但不能指定纸张大小等。这取决于用户在打印对话框中进行选择。window.print()虽然会打印整个页面,但如果您只想打印页面的选定部分,您可以使用媒体 css 从打印输出中隐藏元素。IE
window.print()
@media print { .noprint {display:none;} }
并将类添加.noprint到您不想打印的元素中。
.noprint