判断是否存在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之后就不能用了
都是那坑爹的白名单