Heim >Web-Frontend >js-Tutorial >javascript 学习之旅 (3)_基础知识

javascript 学习之旅 (3)_基础知识

WBOY
WBOYOriginal
2016-05-16 18:56:17829Durchsuche

childNodes属性:将返回一个数组,这个数组包含给定元素节点的全体子元素。
childType属性:返回的数组包含着所有类型的节点
nodeValue属性:改变某个文本节点的值
firstChild和lastChild属性:无论何时何地,只要需要访问childNodes[]数组的第一个元素,外面都可以把它写成firstChild。
node.firstChild等价于node.childNodes[0]
同理
node.lastChild等价于node.childNodes[node.childNodes.length-1]

第五章 javascript编程原则和良好习惯

预留退路
分离javascript
向后兼容

第六章

把多个javascript函数绑定到onload事件处理函数上

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


调用方法
addLoadEvent(方法名);
addLoadEvent(方法名);

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn