SVGPointList: insertItemBefore() 方法

**insertItemBefore()** 方法是 SVGPointList 接口的方法,用于在列表中的另一个项目之前插入一个 point

语法

js
insertItemBefore(obj, index)

参数

obj

一个 SVGPoint 对象,包含要插入点的坐标。

index

要插入对象之前的项目的索引。如果传入的索引大于列表的长度,则索引将设置为列表长度,并且项目将插入列表中最后一个项目之前。

返回值

插入的 SVGPoint 对象。

异常

NoModificationAllowedError DOMException

如果列表是只读的,则抛出此异常。

示例

以下示例显示了一个 SVG,其中包含一个带有五个坐标对的 <polyline>。创建一个新的 SVGPoint,并在索引 2 处的点之前插入。

html
<svg id="svg" viewBox="-10 -10 120 120" xmlns="http://www.w3.org/2000/svg">
  <polyline
    id="example"
    stroke="black"
    fill="none"
    points="50,0 21,90 98,35 2,35 79,90" />
</svg>
js
let example = document.getElementById("example");
let svgpoint = document.getElementById("svg").createSVGPoint();
svgpoint.y = 10;
svgpoint.x = 10;
console.log(example.points.insertItemBefore(svgpoint, 2));

规范

规范
可缩放矢量图形 (SVG) 2
# __svg__SVGNameList__insertItemBefore

浏览器兼容性

BCD 表仅在启用 JavaScript 的浏览器中加载。