使用外部.js文件动态创建SVG

时间:2014-04-15 12:09:04

标签: javascript svg

我正在尝试使用外部.js文件创建一个SVG(实际上由svg.php - 文件创建)。将所有javascript函数直接放在SVG中时,它可以正常工作:

<?php
header('Content-type: image/svg+xml');
?>
<svg
 xmlns="http://www.w3.org/2000/svg"
 version="1.1"
 width="800"
 height="600"
 id="example_text">
    <g id="layer1">
        <text
         x="100"
         y="100"
         id="text_holder"
         style="font-size: 12pt;">
            <?php echo filter_input(INPUT_GET, 'text'); ?>
        </text>
    </g>
    <script type="text/javascript">
        function create_from_rect (client_rect, offset_px) {
            if (! offset_px) {
                offset_px=0;
            }

            var box = document.createElementNS(
                document.rootElement.namespaceURI,
                'rect'
            );

            if (client_rect) {
                box.setAttribute('x', client_rect.left - offset_px);
                box.setAttribute('y', client_rect.top - offset_px);
                box.setAttribute('width', client_rect.width + offset_px * 2);
                box.setAttribute('height', client_rect.height + offset_px * 2);
            }

            return box;
        }

        function add_bounding_box (text_id, padding) {
            var text_elem = document.getElementById(text_id);
            if (text_elem) {
                var f = text_elem.getClientRects();
                if (f) {
                    var bbox = create_from_rect(f[0], padding);
                    bbox.setAttribute(
                        'style',
                        'fill: none;'+
                        'stroke: black;'+
                        'stroke-width: 0.5px;'
                    );
                    text_elem.parentNode.appendChild(bbox);
                }
            }
        }

        add_bounding_box('text_holder', 10);
    </script>
</svg>

可以装载例如svg.php?text=Test(创建一个SVG并在其周围绘制一个框。该示例主要取自How can I draw a box around text with SVG?。)

但是,我想将javascript函数放在外部的.js文件中。不幸的是,我无法弄清楚在哪里加载它。将函数放在svg.js中并在php文件中的其他脚本之前添加一个简单的<script src="svg.js"></script>似乎无法解决问题。

1 个答案:

答案 0 :(得分:1)

在SVG中,<script>标记使用xlink:href而不是src指向外部脚本文件,因此您需要

<script xlink:href="svg.js"/>

如果您尚未定义xlink命名空间,则需要通过添加xmlns:xlink="http://www.w3.org/1999/xlink"作为根<svg>元素的属性来执行此操作。 e.g。

<svg
 xmlns="http://www.w3.org/2000/svg"
 xmlns:xlink="http://www.w3.org/1999/xlink"
 version="1.1"
 width="800"
 height="600"
 id="example_text">
...