<!DOCTYPE html><html lang="zh-CN"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0"> ...
分类:
其他好文 时间:
2017-03-01 12:59:27
阅读次数:
173
Node nodeType document 9 elem 1 attr 2 text 3 nodeName document #document elem 全大写标签名 attr 属性名 text #text nodeValue document null elem null attr 属性值 t ...
分类:
其他好文 时间:
2017-02-24 23:49:37
阅读次数:
204
在文档中,任何一个节点都有 type 、 name 、value 这三个属性。 元素节点没有nodeValue 属性,值为null radio 判断其有没有被选中,radio 有个属性默认值是 checked="checked",如果可以遍历radio数组,checked属性有值或者存在,说明被选中 ...
分类:
编程语言 时间:
2017-02-03 15:38:15
阅读次数:
157
嗯,大过年的上次更新应该还是在,大年30前一天,说好的一天更一篇,感觉食言了,虽然没有更,但是,每天还是坚持在学习的,所以今天的任务就是把这几天学的都发上来。 博客,我觉得不仅仅是交流知识的地方,我宁愿把它写成我的生活日记。有差的,欢迎拍砖。 好了,进入正题吧。 DOM操作,我觉得可以归结成三个,一 ...
分类:
Web程序 时间:
2017-01-31 14:27:08
阅读次数:
223
//DOM 的 CRUD // c 创建create // 1.直接往body中动态的添加标签(可以是任意类型)document.write('helloWorld');document.write('<p>"helloworld"</p>'); // 2. 创建一个新的标签,然后插入到body中任 ...
分类:
其他好文 时间:
2017-01-14 18:34:24
阅读次数:
210
以下内容来自《javasript DOM 编程艺术》第二版 dom中三种重要的节点:元素节点、属性节点、文本节点。 几种节点的重要属性:nodeValue,nodeType(为数字1、2、3)。 子节点属性:childNodes,firstChild=.childNodes[0],lastChild ...
分类:
编程语言 时间:
2016-12-25 18:37:37
阅读次数:
204
1.1)dom-core方法:(不专属于js,支持dom的任何一种程序设计语言都可以使用它,它们的用途,也不仅限于处理网页,也可以用来处理任何一种标记语言编写处理的文档) ①getElementById() ②getElementsByTagName() ③getElementsByClassNam ...
分类:
编程语言 时间:
2016-12-18 01:59:29
阅读次数:
144
需求: 为每个 li 节点添加一个 confirm(确认对话框): 确定要删除 xx 的信息吗?若确定, 则删除 1,获取li所有节点 var liNodes = document.getElementsByTagName("li"); 2,for循环 for(var i = 0; i < liNo ...
分类:
其他好文 时间:
2016-12-14 13:59:04
阅读次数:
163
目录结构: // <![CDATA[ function shocon(){ document.getElementById("modol").style.display="block"; } function clocon(){ document.getElementById("modol").st ...
分类:
Web程序 时间:
2016-12-12 19:19:01
阅读次数:
184
修改p标签的值 js: 获取id为ppp的p里面的数据是:document.getElementById('ppp').firstChild.nodeValue; 修改id为p1的内容 document.getElementById('p1').innerHTML="我P君又回来了"; jQuery ...
分类:
其他好文 时间:
2016-11-24 09:27:07
阅读次数:
118