search
HomeWeb Front-endJS TutorialLearn about javascript dom programming together and record notes on practical experience

I have been learning JavaScript dom programming recently. I am afraid that I will forget it in the future, so I specially summarized and organized what I have learned. What is dom operation? Document object mode is a w3c standard.

1.JavaScript is a programming language that makes web pages interactive.

2. The method of setting the properties of browser properties is called BOM.

3. Camel case naming (myMood) is the preferred naming format for function names, method names and object attribute names.

4. When naming variables, you can use underscores to separate each word, and when naming functions, use camel case naming.

5. The function should behave like a self-sufficient script. When defining a function, we must explicitly declare all its internal variables as local variables.

6. Objects predefined by the browser are called host objects. Host objects include From, Image, document, etc.

7.DOM (document object model).

8. There are element nodes (labels) in the DOM (each element in the document is an object), text nodes (content), and attribute nodes (attributes).

9. Even if this tag has only one element in the entire document, getElementsByTagName returns an array, and the length of the array is 1.

10.getElementsByClassName returns an array of elements with the same class name.

11. When using getElemntsByClassName to specify multiple class names, you only need to separate the multiple class names with spaces
in the parameters.
12.getElementsById returns an object, which corresponds to a special element node
in the document.
13. Both getAttribute and setAttribute functions can only be used for element nodes.

14. DOM working mode: load the static content of the document first, and then refresh it dynamically. Dynamic refresh does not affect the static content of the document. Refreshing the page content does not require refreshing the page in the browser.

15. After adding an event handling function to an element, once the event occurs, the corresponding JavaScript code will be executed. The called JavaScript code can return a value, which is passed to the event handler. Assume that the event processing function is specified in the a tag onclick. When this function returns a true, the onclick event will think that the link in the a tag has been clicked. If it returns false, it will be considered that the link 2 has not been clicked. Therefore, if you want not to trigger the default behavior in the a tag, add a return false in onclick.

<li><a href="img/1.png" onclick="showpic(this);return false;">1</a> </li>

16. The childNodes attribute can be used to get all the child elements of any element. It is an array containing all the child elements of this element.

17. If you want to know the type of a node, you can use nodeType to view the type of the node.
nodeType=1 The node is an element node.

           =2            属性节点
           =3            文本节点

18.window.open() opens a New browser window.

function popUrl(winURL) {
        window.open(winURL,"popup","width:320px,height:400px");
    }
    popUrl(&#39;canvas.html&#39;);

19. Smooth degradation (when the browser does not support js code, it does not affect the normal function of the web page.)

20. Performance considerations
(1) Access the DOM as little as possible: Whenever you query for certain elements in the DOM, the browser searches the entire DOM tree for possible matching elements. In other words, the entire DOM tree will be traversed every time getElementBy* is used, so it is best to use it once to obtain the element and store the element in a variable.
(2) Use tags as little as possible: Too many unnecessary elements will only increase the size of the DOM tree, thereby increasing the time it takes to traverse the DOM tree to find specific elements.
(3) The best way to include scripts is to use external files and merge multiple js files together. This reduces the number of requests sent when loading a page.
(4) Place all Script tags at the end of the document, before the end of the body tag, to make the page faster.
(5) Compress script: Delete all unnecessary bytes in the script text, such as spaces and comments, to achieve the purpose of compressing the file.

21. HTTP protocol specification, the browser can download up to two files at the same time from the same name at a time.

22. If you want to use JavaScript to add some behavior to a web page, you should not let the JavaScript code have any dependence on the structure of the web page.

23. If a function has multiple exits, arrange these exits at the beginning of the function.

24. Loop to determine the js processing done after a group of a tags are clicked

function prepareGallery() {
    if (!document.getElementById) return false;
    if (!document.getElementsByTagName) return false;
    if (!document.getElementById(&#39;imagegallery&#39;)) return false;
    var gallery = document.getElementById(&#39;imagegallery&#39;);
    var links  = gallery.getElementsByTagName(&#39;a&#39;);
    for (var i = 0; i < links.length; i++){
        links[i].onclick = function () {
            showpic(this);
            return false;
        }
    }
}

25.addLoadEvent(): Write your own script function to add the processing that needs to be done when the page is loaded. Function

function addLoadEvent(func) {
  var onload = window.onload;
  if (typeof window.onload !=func){
  window.onload = func;
  }else {
  window.onload = function (ev) {
  oldload();
  func();
  }
  }
}

26.createTextNode is used to create text nodes

var txt =  document.createTextNode("hello world");

27.js When you want to insert content into the document, you must start from the perspective of dom. For example, insert a p paragraph in p:


I want to insert a p in js
var p = document.createElement("p");
var txt = document.creatTextNode(&#39;hello world&#39;);
var p = document.getElementById("myp");
p.appendChild(p);
p.appendChild(txt);

28.insertBefore() ,: Insert an element in front of the element,

Related articles:

"Java Script DOM Programming Art" reading notes

##"JavaScript DOM Programming Art" Reading Notes DOM Basics_javascript skills

Related videos:

JavaScript&DOM video tutorial

The above is the detailed content of Learn about javascript dom programming together and record notes on practical experience. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version