function isPC () { var userAgentInfo = navigator.userAgent; var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; var flag = true; for (var v = 0; v < Agents.length; v++) { if (userAgentInfo.indexOf(Agents[v]) > 0) { flag = false; break; } } return flag; } if (isPC()) { if (location.pathname === '/mobile/yq_cykj.html') { //location.href = '/yq_cykj.html'; } //location.href = '../index.html'; } // 鎸夐挳active $('body').on('touchstart', '.btn', function () { var $this = $(this); $this.addClass('f-active'); setTimeout(function () { $this.removeClass('f-active'); }, 100) }) // 寮瑰嚭鍏抽棴 $('body').on('click', '.m-popup .close, .m-popup .j-close', function () { $(this).parents('.m-popup').hide(); }) // loading function showLoading (text) { var info = text ? '
' + text + '
' : ''; hideLoading(); $('body').append('' + text + '