0

我目前正在构建一个具有响应式设计的网站。作为其中的一部分,如果用户使用移动设备访问网站,我需要阻止执行以下代码。我怎样才能做到这一点?

编码:

var leftHeight = $("#sidebar").height();
var rightHeight = $("#main").height();
if (leftHeight > rightHeight){ $("#main").height(leftHeight)}
else{ $("#sidebar").height(rightHeight+25)};

function equalHeight() {
    var heightArray = $("#footer>div.box").map(function () {
        return $(this).height();
    }).get();

    var maxHeight = Math.max.apply(Math, heightArray);
    $("#footer>div.box").height(maxHeight);
}
equalHeight();
4

1 回答 1

-1

我想我找到了解决方案:

if (document.documentElement.clientWidth < 980 ) {
    $("#sidebar").height("auto");
    $("#footer .box").height("auto");
}
于 2013-06-19T14:25:11.327 回答