Web applications 无法在全屏webapp中打印(IOS9)

Web applications 无法在全屏webapp中打印(IOS9),web-applications,printing,ios9,Web Applications,Printing,Ios9,使用IOS9时,打印功能在全屏模式下无法正常工作(网站通过safari固定在主屏幕上)。当我按下全屏webapp中的打印按钮时,会出现打印对话框,但打印预览不可见,“选择打印机”按钮始终为灰色 有人知道这个问题吗 我用不同的IPad设备测试了以下页面: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" c

使用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>

演示
降级文本