站长资源
中国站长网站

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;

     }

}

本文出处:来自互联网信息共享,请勿相信收费信息站长资源 » JS调起微信客户端

评论 抢沙发

评论前必须登录!