JS学习脚本

 DOM:

关键字:getElementById() getElementsByTagName()获取为数组形式;

设定属性:getAttribute()  setAttribute()

获取子元素:childNode(数组形势) firstChild  lastChild

nodeType 1表示元素  2表示属性 3表示文本nodeValue

创建元素:createElements()  插入元素:parent.appendChild() 

设定插入文本:createNodeText()

插入insertBefore()

function insertAfter(newElement,targetElement){

var parent= targetElement.parentNode;

if(parent.lastChild ==targetElement){

parent.appendChild(newElement);

}

else{parent.insertBefore(newElement,targetElement.nextSibling);}

 

}

事件加载多个函数:

function addLoadEvent(func){

var oldonload = window.onload;

if(typeof window.onload !='function')

{

window.onload =func;

}

else

{window.onload=function(){oldonload();func();}}

}

 

 

 

你可能感兴趣的:(JavaScript,职场,dom,休闲)