master
chenzhi 5 years ago
parent 2e8f7ba410
commit 61f4bec085

@ -171,6 +171,7 @@
// initialSlide :2, // initialSlide :2,
noSwiping : true, noSwiping : true,
}) })
checkSafari()
var loginLock = false; var loginLock = false;
function GetVerityCode() { function GetVerityCode() {
//刷新验证码 //刷新验证码
@ -397,6 +398,19 @@
return true; return true;
} }
} }
function checkSafari() {
var ua = navigator.userAgent.toLowerCase();
//判断是不是在iPhone的Safair浏览器打开的本页面
if (ua.indexOf('applewebkit') > -1 && ua.indexOf('mobile') > -1 && ua.indexOf('safari') > -1 &&
ua.indexOf('linux') === -1 && ua.indexOf('android') === -1 && ua.indexOf('chrome') === -1 &&
ua.indexOf('ios') === -1 && ua.indexOf('browser') === -1) {
return true;
}
else {
alert("请使用iPhone中的Safari浏览器打开本页面");
window.location.href = 'mobile.php?s=/Ssg/home.html';
}
}
</script> </script>
</html> </html>
Loading…
Cancel
Save