如何在javascript中获取元素的宽度

时间:2015-07-26 22:50:02

标签: javascript height width getelementbyid

我正在尝试获取元素的宽度和高度。我的元素是ID为" page"的DIV。

当前代码无效,因为我的div有边框,它允许我的按钮离开边框。

我尝试过.offsetWidth和.clientwidth - 两者都返回了空值。

$(document).ready(function() {
    $("#diagnosis").hide();
    $("#doctors").hide();
    $("#medications").hide();
    $("#surgeries").hide();
    if (selector == "medical") {
        $("#medications").show();
    }
    if (selector == "doctor") {
        $("#doctors").show();
    }
    if (selector == "diag") {
        $("#diagnosis").show();
    }
    if (selector == "surgery") {
        $("#surgeries").show();
    }

});

2 个答案:

答案 0 :(得分:1)

  

的document.getElementById( “页”)。style.width

答案 1 :(得分:0)

window.getComputedStyle("page").getPropertyValue('font-size');