ct/www.yuxiit.com/js/gopcOm.js
2025-10-08 13:48:54 +08:00

16 lines
878 B
JavaScript

$('#gopcOm').click(function(event) {
var userAgent = navigator.userAgent.toLowerCase();
if(userAgent == null || userAgent == ''){
window.open('carShare.html', '_blank')
}else{
if(userAgent.indexOf("android") != -1 ){
location.href = "https://aisite.wejianzhan.com/site/wjz27ybu/4ad18358-aa2d-4667-a7b2-007d1db4d694?dynType=2";
}else if(userAgent.indexOf("ios") != -1 || userAgent.indexOf("iphone") != -1 || userAgent.indexOf("ipad") != -1){
location.href = "https://aisite.wejianzhan.com/site/wjz27ybu/4ad18358-aa2d-4667-a7b2-007d1db4d694?dynType=2";
}else if(userAgent.indexOf("windows phone") != -1 ){
location.href = "https://aisite.wejianzhan.com/site/wjz27ybu/4ad18358-aa2d-4667-a7b2-007d1db4d694?dynType=2";
}else{
window.open('carShare.html', '_blank')
}
}
})