js代码 $(function() { function judge() { var startx;//让startx在touch事件函数里是全局性变量. var endx; var el = document.getElementById('io');//触摸区域. function cons() { //独立封装这个事件可以保证执行顺序,从而能够访问得到应该访问的数据. if (startx > endx) { //判断左右移动程序 alert("left"); } else…
function openApp(){ if(navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) { var loadDateTime = new Date(); window.setTimeout(function() { var timeOutDateTime = new Date(); if(timeOutDateTime - loadDateTime < 5000) { window.location = "要跳转的下载app页面…
原理:原理有两个,第一:通过游览器(browser)判断是否是手机:第二:通过访问终端判断是否是手机(userAgent):但是通常考虑到兼容性,需要这两种原理同时使用:具体的实现如下: JS实现: function checkBrowser(){ var browser={ versions:function(){ var u = navigator.userAgent, app = navigator.appVersion; return { //移动终端浏览器版本信息 trident: u…