JavaScript DOM编程艺术-学习笔记(总结一)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript DOM编程艺术-学习笔记(总结一)相关的知识,希望对你有一定的参考价值。
1.1)dom-core方法:(不专属于js,支持dom的任何一种程序设计语言都可以使用它,它们的用途,也不仅限于处理网页,也可以用来处理任何一种标记语言编写处理的文档)
①getElementById()
②getElementsByTagName()
③getElementsByClassName()
④getAttribute()
⑤setAttribute()
2)html-dom方法:(是html专用属性,不能用于任何其他标记语言文档)
①document.write();
②innerhtml();
2.元素js与jquery方法比较:
原生JS方法 | Jquery方法 |
①getElementById() ②getElementsByTagName() ③getElementsByClassName() |
$(); |
setAttribute() |
attr(),css() |
nodeValue |
text(),val() |
innerHTML | html() |
以上是关于JavaScript DOM编程艺术-学习笔记(总结一)的主要内容,如果未能解决你的问题,请参考以下文章