blob: 1bebff440c25e87569f341ce3ed0d9e77088b1dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
---
title: SVGPathElement.getTotalLength()
slug: Web/API/SVGPathElement/getTotalLength
translation_of: Web/API/SVGPathElement/getTotalLength
---
<div>{{APIRef("SVG")}}</div>
<p><span class="seoSummary"> <code><strong>SVGPathElement.getTotalLength()</strong></code> </span>该方法返回用户代理对路径总长度(以用户单位为单位)的计算值。</p>
<div class="note">
<p>注意:在SVG 2中,该方法被移动到 {{DOMxRef("SVGGeometryElement")}} 接口,由 {{DOMxRef("SVGPathElement")}} 继承。</p>
</div>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate">float <var>someElement</var>.getTotalLength();
</pre>
<h3 id="返回值">返回值</h3>
<p>指示路径总长度(以用户单位为单位)的浮点数。</p>
<h2 id="规格">规格</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规格</th>
<th scope="col">状态</th>
<th scope="col">注解</th>
</tr>
<tr>
<td>{{SpecName("SVG1.1", "paths.html#__svg__SVGPathElement__getTotalLength", "SVGPathElement.getTotalLength()")}}</td>
<td>{{Spec2("SVG1.1")}}</td>
<td>最初的定义</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">此页面上的兼容性表是由结构化数据生成的。 如果您想贡献数据,请查看 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 并向我们发送pull请求。</div>
<p>{{Compat("api.SVGPathElement.getTotalLength")}}</p>
<h2 id="另请参阅">另请参阅</h2>
<ul>
<li>{{DOMxRef("SVGGeometryElement.getTotalLength()")}}</li>
</ul>
|