我使用 jquery 来控制 chrome 中的 SVG 文件,
$('svg #lotsofimage').append("<image xlink:href='" + conf[thing].base + "' width= '" + conf[thing].width + "px' height= '" + conf[thing].height + "px' x='" + thing_x + "pt' y='" + thing_y + "pt' ></image>");
但我打开开发工具,它显示如下:
<img xlink:href="xxxx" width="xxxx">
<image></image>was instead of <img />
如何处理?