0

我正在使用这个插件来显示将网站添加到主屏幕的工具提示,但是一旦添加,我不希望工具提示再次出现。文档说我应该只添加一个元标记:

<meta name="apple-mobile-web-app-capable" content="yes">

我做到了,但我仍然每次都看到工具提示。我究竟做错了什么?

4

1 回答 1

3

您可以通过设置addToHomeConfig之前包含插件的 JS 文件来禁用插件的自动启动。

var addToHomeConfig = {
    autostart : false
    //add your other options here
};
//use script tag to include the plugin.

然后,通过插入下面的代码来检测应用程序是否在“Web App Mode”下运行

if (("standalone" in window.navigator) && !window.navigator.standalone){
    //show fullscreen tooltip
    addToHome.show();  //this shows the tooltip
}
于 2012-10-25T15:14:55.137 回答