> 當(dāng)我們寫的代碼在瀏覽器器上顯示時(shí),有可能代碼寫的并不很合理,所以瀏覽器要先將代碼進(jìn)行規(guī)范性的整理,再進(jìn)行解析,因?yàn)橹挥羞@樣,瀏覽器才能正確的提取這些數(shù)據(jù)變?yōu)閷?duì)象 #### 1. 比如:html 文件的內(nèi)容只有一行文字 ``` itqaq.com ``` **但是瀏覽器控制臺(tái)確不只是一行文字,而是將文字放入了body標(biāo)簽中** ![](https://img.itqaq.com/art/content/9900ec2f20b02388e62a76a088daa343.png) #### 2. 比如:將 `script標(biāo)簽` 放到 `body標(biāo)簽` 外面 ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> </body> <script> console.log('hello') </script> </html> ``` **瀏覽器渲染后自動(dòng)將 `script標(biāo)簽` 放入 `body` 標(biāo)簽中** ![](https://img.itqaq.com/art/content/ee959703099dff6b861d697cf0ac079c.png)