if( /f(?=1-)/.test(window.location.pathname) ) {
if( !/Android|webOS|iPhone|iPad|iPod|BlackBerry/gi.test(navigator.userAgent) ) {
window.location.href= "/";
}
}
我正在测试路径名是否以开头, f1-
如果是,并且它不是指定的 userAgent,请返回主页。尽管即使在 userAgent 上它仍然在重定向我......我的正则表达式不正确吗?