D3无法读取null的属性offsetHeight

时间:2018-06-01 09:45:55

标签: javascript d3.js null offsetwidth offsetheight

我刚刚初始化它的高度时得到了这个cannot read property 'offsetHeight' of null

这是我的代码:

d3.select("#container")
    .style("height", "100%")
    .style("width", "100%") 
    .style("position", "relative")
    .style("bottom", 0);


var width = document.getElementById("#container").offsetWidth,
    height = document.getElementById("#container").offsetHeight,
    radius = (Math.min(width, height) / 1.5);

1 个答案:

答案 0 :(得分:2)

使用document.getElementById()时,您无需在ID之前明确键入#