Element.before()

实验性: 这是一项实验性技术
在将其用于生产之前,请仔细检查浏览器兼容性表格

ChildNode.before 方法可以在ChildNode 这个节点的父节点中插入一些列的 Node 或者 DOMString 对象,位置就是在ChildNode 节点的前面,DOMString 对象其实和 Text 节点一样的方式来完成插入的。

语法

[Throws, Unscopable]
void Element.before((Node or DOMString)... nodes);

Parameters 参数

nodes

一系列的 Node 或者 DOMString

Exceptions

  • HierarchyRequestError: 当节点插入了错误的层级就会出现报错,需要遵循 html 标签的层级关系,

Examples 事例

Inserting an element 插入元素节点

var parent = document.createElement("div");
var child = document.createElement("p");
parent.appendChild(child);
var span = document.createElement("span");

child.before(span);

console.log(parent.outerHTML);
// "<div><span></span><p></p></div>"

Inserting text 插入文本节点

var parent = document.createElement("div");
var child = document.createElement("p");
parent.appendChild(child);

child.before("Text");

console.log(parent.outerHTML);
// "<div>Text<p></p></div>"

Inserting an element and text 同时插入文本和元素

var parent = document.createElement("div");
var child = document.createElement("p");
parent.appendChild(child);
var span = document.createElement("span");

child.before(span, "Text");

console.log(parent.outerHTML);
// "<div><span></span>Text<p></p></div>"

Element.before() is unscopable 不可使用区域

The before() 不能配合 with 声明使用,See Symbol.unscopables for more information.

with(node) {
  before("foo");
}
// ReferenceError: before is not defined

Polyfill

兼容 ie9 或者更高版本的方法,You can polyfill the before() method in Internet Explorer 9 and higher with the following code:

// from: https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/before()/before().md
(function (arr) {
  arr.forEach(function (item) {
    if (item.hasOwnProperty('before')) {
      return;
    }
    Object.defineProperty(item, 'before', {
      configurable: true,
      enumerable: true,
      writable: true,
      value: function before() {
        var argArr = Array.prototype.slice.call(arguments),
          docFrag = document.createDocumentFragment();

        argArr.forEach(function (argItem) {
          var isNode = argItem instanceof Node;
          docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem)));
        });

        this.parentNode.insertBefore(docFrag, this);
      }
    });
  });
})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);

Specification

Specification
DOM Standard
# ref-for-dom-childnode-before①

Browser compatibility

BCD tables only load in the browser

See also