我正在使用Raphael绘制SVG元素。
例如,如果我有SVG元素
<image x="710" y="425" width="10" height="10" preserveAspectRatio="none" href="images/car.png" style="cursor: pointer;"/>
如何访问JavaScript中的每个属性(此外,访问方法也应该在IE中起作用)
答案 0 :(得分:1)
给图像一个id元素,例如
<image id="myImage" x="710" y="425" width="10" height="10" preserveAspectRatio="none" href="images/car.png" style="cursor: pointer;"/>
并在使用
通过jQuery访问它之后$('#myImage').attr("width"); // getter
$('#myImage').attr("width", "400"); // setter
问候