suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Warum muss „Parent“ vor der Funktion „insertBefore“ geschrieben werden, ist aber nicht erforderlich, wenn es auf andere Funktionen angewendet wird?

function insertAfter(newElement,targetElment) {
    var parent = targetElment.parentNode;
    if(parent.lastChild == targetElment) {
        parent.appendChild(newElement); 
    } else {
        parent.insertBefore(newElement,targetElment.nextSibling);
    }
}
为情所困为情所困2767 Tage vor1018

Antworte allen(1)Ich werde antworten

  • 習慣沉默

    習慣沉默2017-05-19 10:26:28

    因为 DOM 的 Node 没有这个方法啊,你想这么用的话就把方法植入到 Node 的原型上

    Node.prototype.insertAfter = function insertAfter(newNode, targetNode) {
      if (!(this instanceof Node)) {
        throw new TypeError('Illegal invocation')
      }
      
      if (arguments.length < 2) {
        throw new TypeError("Failed to execute 'insertAfter' on 'Node': 2 arguments required, but only " + arguments.length +" present.")
      }
      
      if (!(newNode instanceof Node)) {
        throw new TypeError("Failed to execute 'insertAfter' on 'Node': parameter 1 is not of type 'Node'.")
      }
      
      if (targetNode !== null && !(targetNode instanceof Node)) {
        throw new TypeError("Failed to execute 'insertAfter' on 'Node': parameter 2 is not of type 'Node'.")
      }
      
      if (targetNode !== null && targetNode.parentNode !== this) {
        throw new DOMException("Failed to execute 'insertAfter' on 'Node': The node before which the new node is to be inserted is not a child of this node.")
      }
    
      if(!targetNode || this.lastChild == targetNode) {
        this.appendChild(newNode); 
      } else {
        this.insertBefore(newNode, targetNode.nextSibling);
      }
    }

    这样就可以用 parent.insertAfter(newElement, targetElment),这里模仿了 insertBefore 的一些处理。

    Antwort
    0
  • StornierenAntwort