Analysis of two usages of the a tag in HTML post request

Analysis of two usages of the a tag in HTML post request

Two examples of the use of the a tag in HTML post request are as follows:

1. Use ajax to initiate a POST request

The HTML code is as follows:

<a href="https://www.jb51.net/" class="a_post">Initiate POST request</a>

The JQuery code is as follows:

$(".a_post").on("click",function(event){
    event.preventDefault(); // Make the method of a invalid, that is, it cannot be adjusted to the URL in href (https://www.cnblogs.com/)
    $.ajax({
           type: "POST",
           url: "url address",
           contentType:"application/json",
           data: JSON.stringify({param1:param1,param2:param2}), //parameter list dataType:"json",
           success: function(result){
              //Operation after request is correct},
           error: function(result){
              //Operation after request failure}
    });
});

2. Use form to initiate POST request

<form id="_form" method="post" action="target">
  <input type="hidden" name="name" value="value" /> 
  <a onclick="document.getElementById('_form').submit();">Click Submit</a>
</form>

Summarize

This is the end of this article about the two usages of the a tag in html post request. For more relevant content about the a tag in html post request, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Various ways to modify the background image color using CSS3

>>:  Introduction to network drivers for Linux devices

Blog    

Recommend

mysql 5.7.19 latest binary installation

First download the zip archive version from the o...

Install Docker for Windows on Windows 10 Home Edition

0. Background Hardware: Xiaomi Notebook Air 13/In...

HTML head structure

The following introduces the commonly used head s...

Pure CSS to achieve cool charging animation

Let’s take a look at what kind of charging animat...

Implementation of MySQL scheduled database backup (full database backup)

Table of contents 1. MySQL data backup 1.1, mysql...

HTML web page image tag

Insert image tag <IMG> The colorful web page...

A brief discussion on the problem of forgotten mysql password and login error

If you forget your MySQL login password, the solu...

MySQL transaction analysis

Transaction A transaction is a basic unit of busi...

How to configure nginx to return text or json

Sometimes when requesting certain interfaces, you...

js implements custom drop-down box

This article example shares the specific code of ...

How to use docker to deploy dubbo project

1. First, use springboot to build a simple dubbo ...

Detailed explanation of how Tomcat implements asynchronous Servlet

Preface Through my previous Tomcat series of arti...