上传svg图片,获取文件中的元素

      const creatSvg = () => {
            const svgPath =urlRef.value;//路径
            fetch(svgPath)
                .then((response) => response.text())
                .then((svgString) => {
                  
                    const svgElement = new DOMParser().parseFromString(svgString, 'image/svg+xml').documentElement;
                    // 在这里对创建的SVG元素进行操作
                    console.error(svgElement);
                    document.getElementById('svgId).appendChild(svgElement);
                })
                .catch((error) => {
                    console.error('Error fetching SVG:', error);
                });
        };

你可能感兴趣的:(javascript,前端)