A brief discussion on the difference between src and href in HTML

A brief discussion on the difference between src and href in HTML

Simply put, src means "I want to load this resource", and href means "I want to associate with this resource"

src is mainly used for element replacement, and href is used to establish relevant links with related documents and external resources.

The href attribute indicates that a link is established between the local web resource and the defined resource.

like:

<link href="style.css" rel="stylesheet"/>

The browser knows that this resource is a style sheet and will not stop parsing when it reaches this element, but rendering the page may stop because the browser needs style rules to render the page.

The browser will not load the CSS file content into the style tag. Therefore we recommend using the link tag instead of @import to load style sheets.

The src attribute will embed the corresponding resource into the current page. like:

<script src="script.js"></script>

When the browser loads and processes the page, it will find script.js and compile the JS. Only then will the subsequent page compilation and parsing work continue.

The JS content will be loaded into the script tag. This is very similar to the img tag. When the browser parses the img tag, it will load the corresponding image and put it into the img tag.

This is why the jS file should be loaded last in the document. Before the label.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  MySQL json format data query operation

>>:  Implementation of Docker container state conversion

Recommend

Tomcat multi-instance deployment and configuration principles

1. Turn off the firewall and transfer the softwar...

Summary of common commands for building ZooKeeper3.4 middleware under centos7

1. Download and decompress 1. Introduction to Zoo...

Detailed explanation of the marquee attribute in HTML

This tag is not part of HTML3.2 and is only suppo...

Vue3 implements CSS infinite seamless scrolling effect

This article example shares the specific code of ...

A brief introduction to the general process of web front-end web development

I see many novice students doing front-end develop...

How to use rem adaptation in Vue

1. Development environment vue 2. Computer system...

Native JS to achieve digital table special effects

This article shares a digital clock effect implem...

How to use the concat function in mysql

As shown below: //Query the year and month of the...

CSS code for arranging photos in Moments

First, you can open Moments and observe several l...

Detailed explanation of Linux server status and performance related commands

Server Status Analysis View Linux server CPU deta...

linux exa command (better file display experience than ls)

Install Follow the README to install The document...

How to use css variables in JS

How to use css variables in JS Use the :export ke...

Detailed explanation of system input and output management in Linux

Management of input and output in the system 1. U...

Analysis of the process of simply deploying nginx in Docker container

1. Deploy nginx service in container The centos:7...