Home >Web Front-end >JS Tutorial >Add a new element after an existing element using insertAfter() method_javascript tips

Add a new element after an existing element using insertAfter() method_javascript tips

WBOY
WBOYOriginal
2016-05-16 16:46:231343browse
Copy code The code is as follows:

//Add a new element after the existing element
function insertAfter(newElement, targetElement){
var parent = targetElement.parentNode;
if (parent.lastChild == targetElement){
parent.appendChild(newElement);
} else {
parent .insertBefore(newElement,targetElement.nextSibling);
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn