0

我想提取数据d="M75.5 299.5 111.5 299.5 111.5 311.5 75.5 311.5 z"以在创建另一个元素时使用它。

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="670px" height="400px" style="position: relative; display: block; background-color: red;">
    <g>
        <path id="k19a56d40" data-model-id="k33d3f3bd" d="M75.5 299.5 111.5 299.5 111.5 311.5 75.5 311.5 z" stroke="#cc2900" stroke-width="1" stroke-linecap="square" stroke-linejoin="round" fill-opacity="1" stroke-opacity="1" fill="#FF3300"></path>
        <path id="k67a7e77a" data-model-id="k33d3f3bd" d="M75.5 299.5 111.5 299.5 111.5 311.5 75.5 311.5 z" stroke="#cc2900" stroke-width="1" stroke-linecap="square" stroke-linejoin="round" fill-opacity="1" stroke-opacity="1" fill="url(#kcd2b6a0)"></path>
    </g>
</svg>
4

3 回答 3

2

纯 JavaScript

function(pathElemId){
var path=document.getElementById(pathElemId);
return path.getAttribute("d")
}

此函数为具有 pathElemId 的路径元素返回“d”

于 2013-02-13T07:34:40.117 回答
0

使用这种方式:

$("#k19a56d40").attr("d");
于 2013-02-13T07:32:08.657 回答
0

尝试这个:

$('svg').find('path').attr('d');

.eq()使用and找到第一个.first()

$('svg').find('path').first().attr('d');
$('svg').find('path').eq(0).attr('d'); // <--change the index of your choice

.last()如果您有两条路径,则可以使用。

于 2013-02-13T07:33:17.027 回答