javascript Dom 中值得收藏的 js 函数

//常用JS,在网页加载完毕后执行JS.

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

实现动态插入html元素,DOM只提供 insertBefore();
function insertAfter(newElement,targetElement) {
  var parent = targetElement.parentNode;
  if (parent.lastChild == targetElement) {
    parent.appendChild(newElement);
  } else {
    parent.insertBefore(newElement,targetElement.nextSibling);
  }
}

你可能感兴趣的:(JavaScript,html)