标签:web test 使用 oid 代码 tor oca 网页 navig
当你的网页使用了两套代码(移动端和pc端代码)来显示你的网页时,就需要用到这种方法:
手机端:
if (!/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "http://你的pc端网址";
}
电脑端:
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "http://你的移动端端网址";
}
标签:web test 使用 oid 代码 tor oca 网页 navig
原文地址:https://www.cnblogs.com/chensv/p/9524290.html