The difference between html empty link href="#" and href="javascript:void(0)"

The difference between html empty link href="#" and href="javascript:void(0)"
# contains a location information. The default anchor is #top, which is the top of the web page. JavaScript:void(0) only indicates a dead link. This is why sometimes when a page is very long, the browse link is clearly #, but it jumps to the top of the page, while JavaScript:void(0) is not the case. Therefore, it is best to use void(0) when calling scripts.
You can test this using the following example:
Code

Tip: You can modify some of the code before running

<<:  Solution for Nginx installation without generating sbin directory

>>:  New ideas for time formatting in JavaScript toLocaleString()

Recommend

How to deploy kafka in docker

Table of contents 1. Build Docker 2. Enter the co...

In-depth study of MySQL multi-version concurrency control MVCC

MVCC MVCC (Multi-Version Concurrency Control) is ...

How to reduce memory usage and CPU usage of web pages

Some web pages may not look large but may be very...

Share 20 excellent web form design cases

Sophie Hardach Clyde Quay Wharf 37 East Soapbox Rx...

Summary of js execution context and scope

Table of contents Preface text 1. Concepts relate...

Advantages and disadvantages of common MySQL storage engines

Table of contents View all storage engines InnoDB...

vue-table implements adding and deleting

This article example shares the specific code for...

Example of how to install nginx to a specified directory

Due to company requirements, two nginx servers in...

Move MySQL database to another disk under Windows

Preface Today I installed MySQL and found that th...

...

Explanation of the concept and usage of Like in MySQL

Like means "like" in Chinese, but when ...

Detailed explanation of 10 common HTTP status codes

The HTTP status code is a 3-digit code used to in...

The difference between char and varchar in MYSQL

CHAR and VARCHAR types are similar, differing pri...

Summary of Vue's monitoring of keyboard events

Key Modifiers When listening for keyboard events,...