About the difference between inspecting elements and viewing the source code of a web page

About the difference between inspecting elements and viewing the source code of a web page

I don’t know if you have noticed that when we open any web page with Chrome browser, there are two very similar options when we right-click on the page:

It is to view the source code of the web page and inspect (inspect elements).

I always thought there was no difference between these two options, but since Chrome lists these two options, there must be a reason for it.

Let's take a look at a simple page:


Copy code
The code is as follows:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test1</title>
<script>
window.onload = function(){
document.getElementById("p1").innerHTML="This is a sentence generated by JS.";
}
</script>
</head>
<body>
<p id="p1"></p>
</body>
</html>

The display effect on the web page is as follows (most of the blank space is deleted to compress the image size):

We review the elements

You will find that there is an extra sentence in the <p></p> tag.
However, in the source code of the web page, there is no such sentence in the <p></p> tag:

This sentence is dynamically generated by JS.

Therefore, there is a slight difference between inspecting elements and viewing the source code of a web page. This difference can be said to be the difference between source code and DOM. When we inspect elements, we are actually viewing the DOM. After the DOM has been rendered, what we see when we view the source code of the web page is the unparsed source code. The above is the full content of this article. I hope it can be of some help to your study and work.

<<:  HTML+CSS merge table border sample code

>>:  Implementation example of specifying container ip when creating a container in docker

Recommend

Use pure CSS to create a pulsating loader effect source code

Effect Preview Press the "Click to Preview&q...

MySQL5.7.27-winx64 version win10 download and installation tutorial diagram

MySQL 5.7 installation We are learning MySQL data...

Overview and differences between html inline elements and html block-level elements

Block-level element features : •Always occupies a ...

How to enable or disable SSH for a specific user or user group in Linux

Due to your company standards, you may only allow...

Embed codes for several older players

The players we see on the web pages are nothing m...

How to effectively compress images using JS

Table of contents Preface Conversion relationship...

Detailed explanation of the correct use of the count function in MySQL

1. Description In MySQL, when we need to get the ...

Summary of knowledge points on using calculated properties in Vue

Computed properties Sometimes we put too much log...

Javascript common higher-order functions details

Table of contents 1. Common higher-order function...

How to install Docker using scripts under Linux Centos

What is the main function of Docker? At present, ...

Common commands for deploying influxdb and mongo using docker

Deploy database based on docker sudo docker pull ...

Summary of Vue watch monitoring methods

Table of contents 1. The role of watch in vue is ...