我有以下问题:
我使用 jQuery Mobile 1.2 创建了一个 webapp。现在我想在没有地址栏、工具栏等的全屏模式下启动这个应用程序。我已经在网上搜索过,发现有一些元标记可以启用这种模式:
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
到目前为止,这是正确的。但我也读到这些标签是 iOS 特定的,在 Android 下会被忽略。我认为框架应该自动切换模式,但它不起作用。是否有我必须操作的特殊全局变量或要调用的框架函数或要包含的脚本片段?
提前致谢!