一些js常用函数

Posted zhouboke111

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些js常用函数相关的知识,希望对你有一定的参考价值。

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);
}
}






















以上是关于一些js常用函数的主要内容,如果未能解决你的问题,请参考以下文章

JS一些常用函数

一些常用JS函数和技巧总结

工作中一些常用的js函数总结

Underscore.js 常用类型判断以及一些有用的工具方法

js正则表达式常用函数方法及简单应用

有哪些js函数