js调起微信客户端

function openwx(){

     locatUrl = "weixin://";

     if(/ipad|iphone|mac/i.test(navigator.userAgent)) {

        var ifr =document.createElement("iframe");

        ifr.src = locatUrl;

        ifr.style.display = "none";

        document.body.appendChild(ifr);

     }else{

        window.location.href = locatUrl;

     }

}

猜你喜欢

转载自blog.csdn.net/xiaonuanli/article/details/80983721