有没有办法检测用户是否仅使用coldfusion在移动设备上? 我没有做移动重定向. 我正在使用CSS媒体查询来更改布局以适应屏幕宽度. 我只是想做一个简单的移动渲染这个信息,而不是渲染这
>我没有做移动重定向.
>我正在使用CSS媒体查询来更改布局以适应屏幕宽度.
>我只是想做一个简单的移动渲染这个信息,而不是渲染这个信息,而不是整个网站的部分. (例如:如果移动[show jquery animation]其他显示[link])
>我不想浪费时间渲染两者,如果只是对无法显示的信息进行显示.
>没有javascript移动检测(人们可能在他们的浏览器上关闭了javascript)
http://www.mccran.co.uk/index.cfm/2010/6/4/Simple-Coldfusion-script-to-detect-if-a-user-is-on-a-Mobile-platform
<cfif findNoCase('Android', cgi.http_user_agent,1)> <!--- relocate to Android version of the mobile site ---> <cflocation url="android/"> <cfelseif findNoCase('iPhone', cgi.http_user_agent,1)> <!--- relocate to iphone version of the mobile site ---> <cflocation url="iphone/"> </cfif>
您可以从用户代理字符串轻松检测浏览器.因为我最近经历过像Chrome这样的浏览器,你可以更改你的用户代理字符串:
http://www.mccran.co.uk/index.cfm/2011/9/25/Samsung-Galaxy-Tab-101-Switching-your-browser-from-mobile-view