标签:lse rtb function next element cti eve eof onload
add函数
function addLoadEvent(func){
var load=window.onload;
if(typeof window.onload!=‘function‘)
{
window.func=onload;
}
else
{
load();
func();
}
}
insertAfter函数
function insertAfter(newElement,tagElemnt){
parent=tagElemnt.parentNode;
if(tagElemnt==parent.lastChild)
{
parent.appendChild(newElement);
}
else
{
insertBefore(newElement,tagElemnt.nextSibling);
}
}
标签:lse rtb function next element cti eve eof onload
原文地址:https://www.cnblogs.com/zhouboke111/p/9068376.html