vue 在svg中想动态添加image,但是图片显示不出来

发布于 2022-09-11 20:10:44 字数 760 浏览 22 评论 0

vue 在svg中想动态添加image,但是图片显示不出来,麻烦帮我看看到底是哪里的问题

let svgimg = document.createElementNS('http://www.w3.org/2000/svg', 'image');
let item = $("#"+this.parkId)[0]
svgimg.setAttribute('x',item.attributes.x.value);
svgimg.setAttribute('y',item.attributes.y.value);
svgimg.setAttribute('width',item.attributes.width.value);
svgimg.setAttribute('height',item.attributes.height.value);
svgimg.href.baseVal = '../../assets/images/Coordinates.png';

在html中写死<image x="1070.4719" y="811.92291" width="63.530552" height="57.686478" xlink:href="../../assets/images/Coordinates.png"/> 图片是可以正常显示的,但是用jq添加,就显示不出来了图片描述

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗琴音 2022-09-18 20:10:44

转成base64就可以

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文