本文摘自PHP中文网,作者coldplay.xixi,侵删。

免费学习推荐:javascript视频教程
1、DOM ,Document/Object/Modul简写,文档对象模型,该模型为DOM元素节点树。不同元素按一定的从属关系构成DOM元素节点树。

2.关于meta
1 2 3 4 5 6 7 8 | <!DOCTYPE html>
<html lang= "en" >
<head>
<meta charset= "UTF-8" /> <!--告诉浏览器底下内容按UTF-8解析 -->
<!--以下给搜索引擎爬虫识别文档内容,不设定不影响使用但影响网页传播涉及SEO-->
<meta name= "keywords" content= "Javascript,HTML,css,XML,XHTML" />
<meta name= "description" content= "Javascript学习" >
<meta name= "author" content= "Hehongchang" >
|
3.css
3.1内联样式 在元素中使用style属性,优先级最高;
1 2 3 4 5 6 7 8 | <style type= "text/css" >
p {
color: blue;
}
</style>
</head>
<body>
<p style= "color:red;" >内联样式</p>
|
其次是id的高于class,class高于元素,其中,p.ysb高于.ysb写法

3.2内部样式 在HTML 头部中使用
1 2 3 4 5 6 7 8 | <style type= "text/css" >
#p{
width: 20px;
height: 20px;
position: relative;
background: red;
}
</style> -->
|
3.3 外部引用,外部引用css文件
新建css文件,将css部分放入文件,在原HTML中调用,调用必须在head中

4.chrome可以作为有力的css调试器
可以直接在Style中进行勾选和修改


5.document对象
认识document操作DOM元素
document为window下的函数,挂在HTMLDocument上的实例,使用document下的函数对dom元素进行选择和操作。
1 | console.log(window.document);
|
//该函数在IE8及以下浏览器,不区分大小写,但chrome是区分的,同时匹配name

document对象下的函数

getElementById(string)(注意element没有s) 返回一个唯一的id指,getElementsByClassName(string),getElementsByTagName(string),getElementsByName(string) 返回一个类数组。

1 2 | var ps2 = document.getElementsByClassName( 'cls1' );
console.log(ps2);
|

document.getElementsByTagName(‘’)返回所有标签的类数组
getElementsByName name属性只对部分元素有效,form,img,iframe,表单元素



6.querySelector(string)返回指定的第一个元素
1 2 | document.querySelector( '.cls1' ).style.color= 'red' ;
document.querySelector( '.cls1' )指获得.cls1元素
|


document.querySelector(‘form input’).style.color= ‘red’;获得form input第一个元素;

7.querySelectorAll()返回一个数组所有
1 2 3 4 | var all = document.querySelectorAll( 'form input' );
console.log(all);
all[0].style.color= 'red' ;
all[2].style.color= 'green' ;
|

8.DOM Node 加深对整个DOM tree的理解
节点包括元素和非元素,元素只是节点的一部分,其中不限于:常用

练习:遍历DOM tree
任何一个Node节点底下都有一个childNodes(包括该节点所有的子节点数组)和children(只有元素),一层嵌一层,元素可有attributes(数组属性值对)。
node里面包括nodeType,nodeName,nodeValue,前面的序号表示节点类型,元素 1,属性2,文本3,注释8,Document 9,Document Type 10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | function goThrough(node,x){
if (node.childNodes!= undefined){
for ( var i = 0; i < node.childNodes.length; i++){
var a = node.childNodes[i];
var s = a.nodeType + '-' + a.nodeName + '-' + a.nodeValue + '-' ;
console.log(x + s);
var attri = '{attri:' ;
if (a.attributes != undefined && a.attributes.length != 0){
for ( var j = 0; j < a.attributes.length;j++){
var b = a.attributes[j];
attri += b.nodeType + '-' + b.nodeName + '-' + b.nodeValue;
}
attri += '}' ;
console.log(x + attri);
}
goThrough(a, x + '\t' );
}
}
}
goThrough(document, '\t' );
|

注意:从处开始以后每一个回车都是一个文字节点 3-#text- -,


开头没有
练习 过滤body里所有的元素
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function getChildrens(element){
var Childrens = [];
if (element.childNodes != undefined){
for ( var i = 0; i < element.childNodes.length; i++){
var a = element.childNodes[i];
if (a.nodeType == 1){
Childrens.push(a);
}
}
}
return Childrens;
}
console.log(getChildrens(document.body));
|

相关免费学习推荐:javascript(视频)
以上就是学习javascript里的DOM知识的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
了解javascript中的对象原型和原型链
javascript调用后台的方法
荟萃javascript箭头函数语法小结
javascript和java之间有什么区别
javascript专题之八:数组扁平化
javascript中方法和函数是什么
js中null是什么意思?
javascript alert是什么意思
用javascript写一个js解释器
js (javascript)加密算法库 crypto-js 简介
更多相关阅读请进入《javascript》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » 学习javascript里的DOM知识