iPhone、iPad、Android javascript print()
我正在努力让我的网站对 iphone/ipad/android 友好。
现在,有什么方法可以使 javascript .print() 函数在这些设备上运行吗? 无法找到有关此主题的答案。
期待您的回复, 先感谢您。
I'm trying to make my website iphone/ipad/android friendly.
Now, is there any way to make the javascript .print() function work on any of these devices?
Couldn't find an answer on this subject.
Looking forward to your replies,
Thank You in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 iOS 4.2 或更高版本,则函数
window.print()
将起作用,因为 该版本添加了 AirPrint 支持。Android 手机似乎还没有对打印的本机支持,但您可能有兴趣阅读云打印。然而,该解决方案需要“支持云”的打印机。
The function
window.print()
will work if you are using iOS 4.2 or later because that version adds AirPrint support.Android phones don't seem to have native support for printing yet however you might be interested in reading about Cloud Print. However that solution requires a "cloud enabled" printer.
Javascript 函数 print() 在 iPhone 和 iPad 上可以正常工作。
The Javascript function print() will work fine on the iPhone and iPad.