你可以考虑使用 的 CSS 强> 媒体查询设备大小: http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
或者你可以使用某种方式 的 服务器端 强> 检测库如: https://code.google.com/p/php-mobile-detect/
或者你可以使用 的 JavaScript的 强> : 在jQuery中检测移动设备的最佳方法是什么?
Javascript / JQuery将为您服务。假设您使用此处的代码来检测不同的移动浏览器: http://www.abeautifulsite.net/blog/2011/11/detecting-mobile-devices-with-javascript/
然后你可以这样写:
if( isMobile.iOS() || isMobile.Android() ){ $('a#mylink').attr('href', 'http://newlink.com'); }