标签: javascript mobile
为了将我网站的用户退回到该网站的移动版本,我正在考虑使用以下脚本(可以运行该网站的运行):
function devdetect() { var x = screen.width; if (x < 500) { window.location = "http://m.1encrypt.com" } }
这是执行此任务的有效方法,还是无法在某些设备上正常运行?我知道这里有很多关于检测移动设备的线程。我的问题是,这种方法有什么问题?