我的 Raphael JS 论文是在 id 为“temp”的 div 中创建的。我希望纸张的高度和宽度与 div temp 的高度和宽度相同。我该如何使用 javascript 或 jquery 执行此操作?
HTML
<div id="temp" style="border:1px solid red;width:500px;height:500px"></div>
我尝试使用获取高度和宽度
document.getElementById("temp").style.width
document.getElementById("temp").style.height
但是当我用它来创建论文时,我收到了一个 JS 警告..