Three ways to jump to a page by clicking a button tag in HTML

Three ways to jump to a page by clicking a button tag in HTML

Method 1: Using the onclick event

<input type="button" value="button"
onclick="javascript:window.location.href='http://www.baidu.com/'" />

Or use the button tag directly

<button onclick="window.location.href = 'https://www.baidu.com/'">Baidu</button>

Method 2: Add an a tag to the button tag

<a href="http://www.baidu.com/">
    <button>Baidu</button>
</a>

Or use

<a href="http://www.baidu.com/"><input type="button" value='Baidu'></a>

Method 3: Using JavaScript Function

<script>
function jump(){
 window.location.href="http://www.baidu.com/";
}
</script>
<input type="button" value="Baidu" onclick=javascript:jump() />
// Or <input type="button" value="Baidu" onclick="jump()" />
// or <button onclick="jump()">Baidu</button>

Summarize

The above are three methods introduced by the editor to achieve page jump by clicking the button tag in HTML. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  The most common declaration merge in TS (interface merge)

>>:  Docker deploys Mysql, .Net6, Sqlserver and other containers

Recommend

Sample code for realizing book page turning effect using css3

Key Takeaways: 1. Mastering CSS3 3D animation 2. ...

HTML table mouse drag sorting function

Effect picture: 1. Import files <script src=&q...

Use PS to create an xhtml+css website homepage in two minutes

There are too many articles about xhtml+css websi...

JavaScript implementation of a simple addition calculator

This article example shares the specific code of ...

Comprehensive inventory of important log files in MySQL

Table of contents Introduction Log classification...

Mysql 5.7.17 winx64 installation tutorial on win7

Software version and platform: MySQL-5.7.17-winx6...

A pitfall and solution of using fileReader

Table of contents A pitfall about fileReader File...

Javascript Virtual DOM Detailed Explanation

Table of contents What is virtual dom? Why do we ...

Causes and solutions for slow MySQL queries

There are many reasons for slow query speed, the ...

Detailed explanation of MySQL group sorting to find the top N

MySQL group sorting to find the top N Table Struc...

In-depth explanation of currying of JS functions

Table of contents 1. Supplementary knowledge poin...

JavaScript implements draggable modal box

This article shares the specific code of JavaScri...

Using text shadow and element shadow effects in CSS

Introduction to Text Shadows In CSS , use the tex...