An example of the execution order between the href jump and onclick of the html hyperlink a tag

An example of the execution order between the href jump and onclick of the html hyperlink a tag

The execution relationship between the href jump and onclick of the html hyperlink a tag
The href of the html a tag is used for jumping, but if an onclick event is added, what is the execution order?
as follows:
[code]
<a href="1.html" onclick="return confirm('Do you want to delete this node?');" ><img src="shanchu.gif"></a>

If onclick returns false, a does not jump;
If onclick returns true, a jumps

Note: Add the return keyword in onclick

This is often used to make judgments before jumping! !

<<:  Do not start CSS pseudo-class names with numbers

>>:  How to handle super large form examples with Vue+ElementUI

Recommend

In-depth explanation of InnoDB locks in MySQL technology

Table of contents Preface 1. What is a lock? 2. L...

Specific use of exception filter Exceptionfilter in nestjs

Speaking of Nestjs exception filter, we have to m...

The difference and choice between datetime and timestamp in MySQL

Table of contents 1 Difference 1.1 Space Occupanc...

An article teaches you how to implement a recipe system with React

Table of contents 1. Recipe Collection 1.1 Projec...

Summary of Linux user groups and permissions

User Groups In Linux, every user must belong to a...

Vue-cli framework implements timer application

Technical Background This application uses the vu...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

How to change the terminal to a beautiful command line prompt in Ubuntu 18

I reinstalled VMware and Ubuntu, but the command ...

The homepage design best reflects the level of the web designer

In the many projects I have worked on, there is b...

Tutorial on using the frameset tag in HTML

Frameset pages are somewhat different from ordina...

Detailed steps to modify MySQL stored procedures

Preface In actual development, business requireme...

MySQL stored functions detailed introduction

Table of contents 1. Create a stored function 2. ...

Detailed explanation of Docker Swarm service orchestration commands

1. Introduction Docker has an orchestration tool ...

JavaScript function detailed introduction

Any number of statements can be encapsulated thro...

Detailed explanation of the role of the new operator in Js

Preface Js is the most commonly used code manipul...