gpt4 book ai didi

jquery - 在 svg 中添加新行,bug 看不到该行

转载 作者:行者123 更新时间:2023-12-03 21:59:25 24 4
gpt4 key购买 nike

我想在 svg 中添加新行当按下添加按钮时,应将新行添加到 svg 中我可以确定该行已添加到元素中,但为什么它没有显示在屏幕上?

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#map
{
border:1px solid #000;
}
line
{
stroke:rgb(0,0,0);
stroke-width:3;
}
</style>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
$("#add").click(function(){
var newLine=$('<line id="line2" x1="0" y1="0" x2="300" y2="300" />');
$("#map").append(newLine);
});
})
</script>
</head>

<body>

<h2 id="status">
0, 0
</h2>
<svg id="map" width="800" height="600" version="1.1" xmlns="http://www.w3.org/2000/svg">
<line id="line" x1="50" y1="0" x2="200" y2="300"/>
</svg>
<button id="add">add</button>



</body>
</html>

最佳答案

为了向 SVG 对象添加元素,必须在 SVG 命名空间中创建这些元素。由于 jQuery 目前不允许您执行此操作(AFAIK),因此您无法使用 jQuery 来创建元素。这将起作用:

$("#add").click(function(){
var newLine = document.createElementNS('http://www.w3.org/2000/svg','line');
newLine.setAttribute('id','line2');
newLine.setAttribute('x1','0');
newLine.setAttribute('y1','0');
newLine.setAttribute('x2','300');
newLine.setAttribute('y2','300');
$("#map").append(newLine);
});

Here's a working example .

关于jquery - 在 svg 中添加新行,bug 看不到该行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7547117/

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