Html5判断app是否安装

来源:互联网 发布:deepin 和mint ubuntu 编辑:程序博客网 时间:2024/05/14 02:26

判断是否存在app

var ifr = document.createElement('iframe');        ifr.src = 'weixin://';        ifr.style.display = 'none';        document.body.appendChild(ifr);        window.setTimeout(function(){            document.body.removeChild(ifr);            alert("没有找到");        },3000);

好像ios9之后就不能用了

都是那坑爹的白名单

0 0
原创粉丝点击