使用IOS9时,打印功能无法在全屏模式下正常工作(网站通过safari固定在主屏幕上)。当我按下全屏webapp内的打印按钮时,会出现打印对话框,但打印预览不可见,并且"选择打印机"按钮始终是灰色的。
有谁知道这个问题?
我使用不同的IPad设备测试了以下页面:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title>Demo</title>
</head>
<body>
Demotext
<a href="#" onclick="window.print()">druck mich</a>
</body>
</html>