我的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警告..
答案 0 :(得分:4)
如果你的javascript中有以下RaphaelJS init:
var paper = new Raphael('myDiv');
在html中:
<div id="myDiv" style="width: 200px; height: 200px;" />
这里的raphael纸将是200px×200px。它自动完成。
答案 1 :(得分:-1)