在Bootstrap+jQuery中判断设备尺寸类型

$(document).ready(function() {
  if ($("#mobileFlag").is(":hidden")) {
    // 平板或PC
  } else {
    // 移动设备
  }
});

参考:
http://v3.bootcss.com/css/#responsive-utilities-classes

你可能感兴趣的:(在Bootstrap+jQuery中判断设备尺寸类型)