5

我正在从 JavaScript 动态创建 SVG 元素。对于像矩形这样的视觉对象来说它工作得很好,但是我在生成功能正常的 xlink 时遇到了麻烦。在下面的示例中,第一个矩形(静态定义)在单击时可以正常工作,但其他两个(在 JavaScript 中创建)忽略单击......即使在 Chrome 中检查元素似乎显示相同的结构。

我已经看到出现了多个类似的问题,但没有一个能完全解决这个问题。我发现的最接近的是[通过 JS 在 svg 中添加图像命名空间仍然没有显示图片],但这不起作用(如下所述)。我的目标是完全在 JavaScript 中完成这项工作,而不依赖于 JQuery 或其他库。


<!-- Static - this rectangle draws and responds to click -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svgTag">
    <a xlink:href="page2.html" id="buttonTemplate">
        <rect x="20" y="20" width="200" height="50" fill="red" class="linkRect"/>
    </a>
</svg>

<script>
    var svgElement = document.getElementById ("svgTag");

    // Dynamic attempt #1 - draws but doesn't respond to clicks
    var link = document.createElementNS("http://www.w3.org/2000/svg", "a");  // using http://www.w3.org/1999/xlink for NS prevents drawing
    link.setAttribute ("xlink:href", "page2.html");  // no improvement with setAttributeNS
    svgElement.appendChild(link);

    var box = document.createElementNS("http://www.w3.org/2000/svg", "rect");
    box.setAttribute("x", 30); 
    box.setAttribute("y", 30);
    box.setAttribute("width", 200);
    box.setAttribute("height", 50);
    box.setAttribute("fill", "blue");
    link.appendChild(box);

    // Dynamic attempt #2 (also draws & doesn't respond) - per https://stackoverflow.com/questions/6893391
    box = document.createElementNS("http://www.w3.org/2000/svg", "rect");
    box.setAttribute("x", 40); 
    box.setAttribute("y", 40);
    box.setAttribute("width", 200);
    box.setAttribute("height", 50);
    box.setAttribute("fill", "green");
    box.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', "page2.html");
    svgElement.appendChild(box);

4

1 回答 1

9

只有 an<a>可以是链接,因此向<rect>元素添加 xlink:href 属性将无效。

你需要使用你说的 setAttributeNS 不起作用,但它对我有用,所以也许还有其他问题。

这个例子对我有用:

var svgElement = document.getElementById ("svgTag");

var link = document.createElementNS("http://www.w3.org/2000/svg", "a");
link.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', "page2.html");
svgElement.appendChild(link);

var box = document.createElementNS("http://www.w3.org/2000/svg", "rect");
box.setAttribute("x", 30); 
box.setAttribute("y", 30);
box.setAttribute("width", 200);
box.setAttribute("height", 50);
box.setAttribute("fill", "blue");
link.appendChild(box);
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svgTag">
</svg>

于 2013-10-02T08:37:38.840 回答