1

我有一些代码仅在不在移动浏览器上使用 Modernizr 媒体查询时才显示 div。当窗口手动缩小到移动宽度时,它在 Firefox (v 19) 中有效,但是当使用 Web Developer 工具栏的 View Responsive Layouts 时,它似乎会引发错误,从而阻止页面加载。如果 Modernizr.mq 测试被删除,它在 View Responsive Layouts 中运行良好。以下是有问题的代码...

function showDiv() {
  $('#old').hide();
  if (!Modernizr.mq('only screen and (max-width: 480px)')) {
    $('#full').show();
  };
  $('#new').show();
}
4

0 回答 0