很多web項目需要用到移動端或PC端自適應,分享一段js代碼給大家,以下代碼親測有效。
<script type="text/javascript">
$(document).ready(function(){
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
alert('移動端設備')
} else {
alert('pc端設備')
}
});
</script>
大部分機型測試基本沒問題。
如無特別說明,文章均為本站原創。轉載請注明出處:http://www.sysbbie.com/phper/67.html
評論列表