3

抱歉,如果这已经得到回答,我是新来的。

我正在尝试使用 jquery 创建 svg 元素,并且我将此代码作为 HTML 页面的一部分:

<svg viewBox="0 0 1000 500">
    <defs>
        <clipPath id="clip">
            <ellipse cx="100" cy="250" rx="200" ry="50" />
        </clipPath>
    </defs>
    <g>
        <path d="M 0,0 L 1000,0 1000,500 0,500"
            fill="#9ADEFF" />
        <path id="boat" stroke="none" fill="red"
            d="M 100,175 L 300,175 300,325 100,325"
            clip-path="url(#clip)" />
    </g>
    <g id="0002" width="100" height="100%"
        transform="translate(1000)">
        <line x1="50" y1="0" x2="50" y2="300"
            stroke="green" stroke-width="100" />
    </g>
</svg>

和这个 Javascript(使用 jQuery 1.9):

var id = 10000,
    coinArray = []

function generateNextLine(type) {
    $('svg').append($(type()))
    return $('svg')[0]
}

function idNo() {
    id++
    return ((id-1)+"").substr(-4)
}

function random(x,y) {
    if (!y) {
        y=x
        x=0
    }
    x=parseInt(x)
    y=parseInt(y)
    return (Math.floor(Math.random()*(y-x+1))+x)
}

function coins() {
    coinArray[id%10000]=[]
    var gID = idNo(), x,
    g=$(document.createElement('g')).attr({
        id: gID,
        width: "100",
        height: "100%"
    })
    while (3<=random(10)) {
        var randomPos=random(50,450)
        coinArray[(id-1)%10000][x] = randomPos
        $(g).append(
            $(document.createElement('circle'))
            .attr({
                cx: "50",
                cy: randomPos,
                r: "50",
                fill: "yellow"
            })
        )
        x++
    }
    return $(g)[0]
}

当我运行generateNextLine(coins);时,svg 添加了这个元素:

<g id="0000" width="100" height="100%">
    <circle cx="50" cy="90" r="50" fill="yellow"></circle>
</g>

但是,svg 的实际显示不会改变。如果我将此代码直接添加到 svg,它会按我的预期呈现,但运行我的 javascript 函数似乎对显示没有任何作用。我在 OS X Lion 上使用 Chrome 28。

4

1 回答 1

6

您必须在 SVG 命名空间中创建 SVG 元素,这意味着您不能这样做

document.createElement('g')

但相反,你必须写

document.createElementNS('http://www.w3.org/2000/svg', 'g')

圆圈等也一样。

于 2013-04-12T21:09:44.260 回答