好的,对于任何想知道这是我能找到的最佳选择,也是迄今为止对用户来说最不烦人的选择。
下载:https ://code.google.com/p/php-mobile-detect/
并将其写在您的页面中,或者您希望这样做。我在课程的网页上混合使用了我自己的样式和引导样式。
<?php if($detect->isIOS()) : ?>
<div class="alert alert-block alert-success" id="mobileApp" style="position:absolute; left:10px; top:15px; z-index:1003; width:910px; text-align:center;">
<button type="button" class="close" data-dismiss="alert">Close</button>
<div class="span3"><img src="imgs/if.png" width="125" height="125"></div> <div class="span5"><h3>we are on the go!</h3></div>
<div class="row">
<div class="span4"><h4>Download our app TODAY!</h4>
<a href="#" class="btn btn-success btn-large " style="color:#fff;">
下载 iPhone 应用程序
</a>
</div>
</div>
</div>
<?php endif; ?>
你可以对 android 重复这个
<?php if($detect->isAndroidOS()) : ?>