// ==================== 导入公共模块 Start ==================== // $("footer").load("/web2/public/pc/footer.html?t=5", function () { }); // $("header").load("/web2/public/pc/header.html?t=5", function () { }) // ==================== 导入公共模块 End ==================== // ==================== 通过机型判断自动跳转 Start ==================== function autoJump(url) { if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) { // window.mobile = true; window.location.href = url; console.log("移动端"); } else { console.log("电脑端"); // window.location.href = url; } } // ==================== 通过机型判断自动跳转 End ====================