Use iframe to submit form without refreshing the page

Use iframe to submit form without refreshing the page
So we introduce an embedding framework to solve this problem. The specific principle is: when the form submits data, the submission target is not set to the current page, but to an embedded frame in the current page.
First you should insert an inline frame below the body:

Copy code
The code is as follows:
<iframe style="width:0; height:0; margin-top:-10px;" name="submitFrame" src="about:blank"></iframe>

You should then set the form's target to be this embedded frame, like this:

Copy code
The code is as follows:
<form name="testform" method="post" action="apply.cgi" target="submitFrame"> <input type="submit" value="Submit"> </form>

This way we get what we need.

<<:  Example code for implementing a three-column layout with CSS, where the middle column is adaptive and changes width with text size

>>:  Several commonly used single-page application website sharing

Recommend

Solution to the problem of mysql master-slave switch canal

After configuring VIP, the error message that app...

echars 3D map solution for custom colors of regions

Table of contents question extend Solving the pro...

Graphic tutorial on configuring log server in Linux

Preface This article mainly introduces the releva...

Sitemesh tutorial - page decoration technology principles and applications

1. Basic Concepts 1. Sitemesh is a page decoratio...

Vue uses canvas to realize image compression upload

This article shares the specific code of Vue usin...

JavaScript type detection method example tutorial

Preface JavaScript is one of the widely used lang...

What to do if you forget your Linux/Mac MySQL password

What to do if you forget your Linux/Mac MySQL pas...

How to uninstall and reinstall Tomcat (with pictures and text)

Uninstall tomcat9 1. Since the installation of To...

Learn SQL query execution order from scratch

The SQL query statement execution order is as fol...

Correct modification steps for Docker's default network segment

background A colleague is working on his security...

JS+AJAX realizes the linkage of province, city and district drop-down lists

This article shares the specific code of JS+AJAX ...

Detailed explanation of html printing related operations and implementation

The principle is to call the window.print() metho...

React antd realizes dynamic increase and decrease of form

I encountered a pitfall when writing dynamic form...