gpt4 book ai didi

javascript - document.documentElement.appendChild() 不起作用

转载 作者:行者123 更新时间:2023-11-29 17:22:09 24 4
gpt4 key购买 nike

我尝试了一些简单的示例,如下所示:

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<script type="text/javascript">
<![CDATA[

function test() {
var svgElement = document.documentElement;
var tnode = document.createTextNode('thx for the click');
var t = document.createElement('text');
t.setAttribute('x','20');
t.setAttribute('y','32');
t.setAttribute('class','ext');
t.setAttribute('id','text1');
t.appendChild(tnode);
svgElement.appendChild(t);
}
]]>
</script>
</defs>
<rect width="100" height="100" y="50" x="50" onclick="test();" />
</svg>

这个显示了一个矩形,如果你点击,test() 就会被执行(见运行版本 here )。正如我在带有 Firebug 的 DOM 上看到的那样,新元素实际上被附加了:

Screenshot of Firebug

但错误是 - 它没有显示!为什么它被附加但不显示?我在这个问题上花了很多时间,但不知道。

我从 SVG workshop 中复制了这个示例,并在 Chrome 和 Firefox 中进行了尝试。

请帮忙:/

最佳答案

您需要在 SVG 命名空间中创建元素,即

var t = document.createElementNS('http://www.w3.org/2000/svg', 'text');

关于javascript - document.documentElement.appendChild() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11889527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com