再会,
我在创建路径并在 SVG 元素中使用“appendChild”显示它时遇到了难以置信的困难。
我必须遗漏一些非常简单的东西,因为我已经倾注了 W3C 的规范、w3schools.com、这里的各种帖子并试图以各种方式忍者谷歌。
我在 FireFox 和 Chrome 中进行测试。
我有一个简单的 svg 文件,因此:
<svg xmlns:svg ... id="fullPageID">
<image id="timer1" x="100" y="100" width="100px" height="100px" xlink:href="../component/timer/timer1.svg" />
<image id="battery1" x="200" y="200" width="100px" height="100px" xlink:href="../component/battery/30x20_ochre.svg" />
<script xlink:href="pathMaker.js" type="text/javascript" id="pathMaker" />
</svg>
我尝试使用的脚本如下所示:
newpath = document.createElementNS("SVG","path");
newpath.setAttribute("id", "pathIdD");
newpath.setAttribute("d", "M 1,97.857143 C 19.285714,96.428571 24.016862,131.64801 90.714286,132.85714 140.78762,133.7649 202.79376,66.16041 202.79376,66.16041");
newpath.setAttribute("stroke", "black");
newpath.setAttribute("stroke-width", 3);
newpath.setAttribute("opacity", 1);
newpath.setAttribute("fill", "none");
document.getElementById("fullPageID").appendChild(newpath);
我只想做一些简单的工作。我是否认为我不需要像在Library 中找到的那样复杂的解决方案来使用 Javascript 生成 SVG 路径??
谢谢。