1. 程式人生 > >限制網頁僅可在微信客戶端開啟

限制網頁僅可在微信客戶端開啟

function is_weixn(){  
    var ua = navigator.userAgent.toLowerCase();  
    if(ua.match(/MicroMessenger/i)=="micromessenger") {//這就是微信用的內建瀏覽器  
        return true;  
    } else {  
        return false;  
    }  
}