Difference between src and href attributes

Difference between src and href attributes

There is a difference between src and href, and they can be confused. src is used to replace the current element, and href is used to establish a connection between the current document and the referenced resource.

src is the abbreviation of source, which points to the location of external resources. The content pointed to will be embedded in the location of the current tag in the document. When the src resource is requested, the resource it points to will be downloaded and applied to the document, such as js scripts, img images, frame elements, etc.

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

When the browser parses this element, it will pause the downloading and processing of other resources until the resource is loaded, compiled, and executed. The same applies to elements such as images and frames, which is similar to embedding the pointed resource into the current tag. This is also why you should put js scripts at the bottom instead of at the top.

href is the abbreviation of Hypertext Reference, which points to the location of a network resource and establishes a link with the current element (anchor) or the current document (link). If we add

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

Then the browser will recognize the document as a CSS file, and will download the resources in parallel without stopping the processing of the current document. This is why it is recommended to use the link method to load CSS instead of the @import method.

<<:  Mysql example of splitting into multiple rows and columns by specific symbols

>>:  Looping methods and various traversal methods in js

Recommend

A brief discussion on the understanding of TypeScript index signatures

Table of contents 1. What is an index signature? ...

Getting started with JavaScript basics

Table of contents 1. Where to write JavaScript 2....

Use of filter() array filter in JS

Table of contents 1. Introduction 2. Introduction...

MySQL Server 8.0.13.0 Installation Tutorial with Pictures and Text

Install 8.0.13 based on MySQL 6.1.3. MySQL 8.0.13...

Copy the contents of one file to the end of another file in linux

Problem description: For example, the content of ...

Flex layout achieves fixed number of rows per line + adaptive layout

This article introduces the flex layout to achiev...

Docker container time zone adjustment operation

How to check if the Docker container time zone is...

8 examples of using killall command to terminate processes in Linux

The Linux command line provides many commands to ...

A brief analysis of MySQL backup and recovery

Table of contents 1. Introduction 2. Simple defin...

Mybatis paging plug-in pageHelper detailed explanation and simple example

Mybatis paging plug-in pageHelper detailed explan...

What we have to say about CSS absolute and relative

Written in the opening: Absolute said: "Rela...

Teach you how to achieve vertical centering elegantly (recommended)

Preface There are many ways to center horizontall...

Detailed tutorial on installing ElasticSearch 6.x in docker

First, pull the image (or just create a container...

JavaScript Reflection Learning Tips

Table of contents 1. Introduction 2. Interface 3....