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. |
>>: Several commonly used single-page application website sharing
After configuring VIP, the error message that app...
Table of contents question extend Solving the pro...
Preface This article mainly introduces the releva...
1. Basic Concepts 1. Sitemesh is a page decoratio...
This article shares the specific code of Vue usin...
This article uses examples to describe MySQL pess...
Preface JavaScript is one of the widely used lang...
What to do if you forget your Linux/Mac MySQL pas...
Mysql5.5 dual machine hot standby Implementation ...
Uninstall tomcat9 1. Since the installation of To...
The SQL query statement execution order is as fol...
background A colleague is working on his security...
This article shares the specific code of JS+AJAX ...
The principle is to call the window.print() metho...
I encountered a pitfall when writing dynamic form...