gpt4 book ai didi

javascript - jQuery 添加的 svg 元素不显示

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:50:06 28 4
gpt4 key购买 nike

很抱歉,如果这个问题已经得到解答,我是 SO 的新手。

我正在尝试使用 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。

最佳答案

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

document.createElement('g')

但是你必须写

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

同样适用于圆圈等

关于javascript - jQuery 添加的 svg 元素不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15980648/

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