当用户使用一些旧手机(不是智能手机和 iPhone)访问网站时如何识别。我将 jQuery-Mobile 与 Joomla 1.7 一起使用。
我使用这个脚本:
<script type="text/javascript">// <![CDATA[
var mobile = (/acer|alcatel|audiovox|avantgo|blazer|cdm|digital paths|elaine|epoc|handspring|iemobile|kyocera|lg|midp|mmp|mobile|motorola|nec|o2|openwave|opera mini|operamini|opwv|palm|panasonic|pda|phone|playstation portable|pocket|psp|qci|sagem|sanyo|sec|sendo|sharp|smartphone|symbian|telit|tsm|up-browser|up.browser|up.link|vodafone|wap|windows ce|xiino|ericsson|sonyericsson|iphone|ipod|android|blackberry|samsung|nokia|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
document.location = "http://mysite,com/mobile";
}
// ]]></script>
该网站适用于 HTC、iPhone、诺基亚等。我的朋友用一些爱立信测试过(不知道型号),但网站无法正常工作。它只显示PC站点,而不是移动站点。