博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript学习笔记1
阅读量:5070 次
发布时间:2019-06-12

本文共 2048 字,大约阅读时间需要 6 分钟。

对象

用户自定义对象:程序员自行创建的对象;

内建对象:内建在JS语言中的对象,如Array、Date和Math等;

宿主对象:由浏览提供的对象。

window对象对应浏览器窗口本身,这个对象的属性和方法通常称为BOM(浏览器对象模型)。

节点

DOM(文档对象模型)比作一棵树,html是树根,代表整个文档。

元素节点:标签,如<body>、<p>、<ul>等。

文本节点:标签中的内容,包含在元素节点的内部。

属性节点:对元素做出更具体的描述,被包含在元素节点中。<a>标签中的title。

文档中的每个元素都是一个对象。

 

获取元素

getElementById:document.getElementById(‘idName’);

       alert(typeof document.getElementById('test'));    //object

getElementsByTagName

       alert(typeof document.getElementsByTagName('p'));

alert(document.getElementsByTagName('*').length);

getElementsByClassName:可以查找带多个类名的元素,类名不区分顺序。由于这个方法较新,某些DOM里可能不兼容。

 

<p class="test">aaaaaaaaaaa</p>

<p class="test">aaaaaaaaaaa</p>

<p class="test2">aaaaaaaaaaa</p>

<p class="test2 aa">aaaaaaaaaaa</p>

<p class="test2 aa">aaaaaaaaaaa</p>

<p class="test2 aa bb">aaaaaaaaaaa</p>

<script>

alert(document.getElementsByClassName('test2').length);   //4

alert(document.getElementsByClassName('test2 aa').length);      //3

alert(document.getElementsByClassName('aa').length);       //3

</script>

function getElementsByClassName(node,classname){    if(node.getElementsByClassName){        return node.getElementsByClassName(classname);    }else{        var result = new Array();        var elems = node.getElementsByTagName('*');        for(var i=0; i

 

获取和设置属性

getAttribute

       object.getAttribute(attribute);

setAttribute

       object.setAttribute(attribute,value);

document.getElementById('test').setAttribute('class','classname')

alert(document.getElementById('test').getAttribute('class'));

 

<input type="test" οnclick="alert(this.value);" value="test">

<a href="http://jd.com" οnclick="alert(this.href);return false;">test</a>

 

事件

onmounseover:鼠标指针悬停在某元素时触发。

onmounseout:鼠标指针离开某元素时触发。

onload:页面加载里执行。

 

childNodes:获取元素的所有子元素。返回的数组包含所有类型的节点,文档中几乎每一样东西都是一个节点,甚至连空格和换行符都会被解释成节点。

var len = document.getElementsByTagName('body')[0].childNodes.length;

nodeType:节点类型,共有12种。

       node.nodeType

       元素节点的nodeType值是1,属性节点的值为2,文本节点的值为3。

nodeValue:节点的值。

       node.nodeValue

firstChild==childNodes[0]

lastChild==childNodes[node.childNodes.length]

 

 

转载于:https://www.cnblogs.com/lltong/archive/2013/06/06/3123044.html

你可能感兴趣的文章
linux正则表达式回忆记录
查看>>
Response.Buffer = True
查看>>
有趣的python range()函数
查看>>
webpack执行命令失败之解决办法
查看>>
理解Mapreduce
查看>>
C语言的变量的作用域和生存期
查看>>
NIS & Kerberos配置
查看>>
【转】非常好的Java反射例子
查看>>
安装clamav对centos系统进行病毒查杀
查看>>
poj3744 Scout YYF I
查看>>
常用Flex 布局归置 》仅做笔记 (scss)
查看>>
Qt-Qml-隐藏标题栏-程序依附任务栏
查看>>
说说JSON和JSONP,也许你会豁然开朗,含jQuery用例
查看>>
前端技术——bootstrap
查看>>
IGMP相关
查看>>
面试题收集-腾讯
查看>>
【2019/5/18】周进度报告
查看>>
获取随机数
查看>>
block
查看>>
plsql 输出当月的所有日期
查看>>